1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
##############################################################################
##
#W print.gd GAP4 package `Utils' Chris Wensley
##
#Y Copyright (C) 2015-2025, The GAP Group
##############################################################################
## added global function and methods to print subsets of lists/iterators
##
DeclareGlobalName( "PrintSelection" );
DeclareOperation( "PrintSelectionFromList",
[ IsList, IsPosInt, IsPosInt, IsPosInt ] );
DeclareOperation( "PrintSelectionFromIterator",
[ IsIterator, IsPosInt, IsPosInt, IsAdditiveElement ] );
DeclareOperation( "PrintSelectionFromListByList", [ IsList, IsList ] );
DeclareOperation( "PrintSelectionFromIteratorByList", [ IsIterator, IsList ] );
#############################################################################
##
#E print.gd . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
|