Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/tst/testinstall/opers/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 411 B image not shown  

Quelle  Concatenation.tst   Sprache: unbekannt

 
gap> START_TEST("Concatenation.tst");

#
gap> Concatenation( );
[  ]
gap> Concatenation( [ ] );
[  ]
gap> Concatenation( [ 1 ] );
Error, Concatenation: arguments must be lists
gap> Concatenation( [ [ 1, 2 ] ] );
[ 1, 2 ]
gap> Concatenation( [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] );
[ 1, 2, 3, 4, 5, 6 ]
gap> Concatenation( [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] );
[ 1, 2, 3, 4, 5, 6 ]

#
gap> STOP_TEST("Concatenation.tst");

[ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet)  ]