IsTransformation( obj )
IsTransformation returns true if the object obj is a
transformation and false otherwise.
gap> IsTransformation( [1,1,2] ); false # a list is not a transformation gap> IsTransformation( (1,2,3) ); false # a permutation is not a transformation gap> IsTransformation( t1 ); true
GAP 3.4.4