File: print.gd

package info (click to toggle)
gap-utils 0.93-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,504 kB
  • sloc: xml: 2,167; javascript: 155; makefile: 105
file content (20 lines) | stat: -rw-r--r-- 928 bytes parent folder | download
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