Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/pkg/symbcompcc/gap/SchurExtensions/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 10.1.2022 mit Größe 820 B image not shown  

Quelle  MakeMutableCopyListPPP.gi   Sprache: unbekannt

 
Untersuchungsergebnis.gi Download desUnknown {[0] [0] [0]}zum Wurzelverzeichnis wechseln

###############################################################################
##
#F MakeMutableCopyListPPP.gi  The SymbCompCC package    Dörte Feichtenschlager
##

###############################################################################
##
#M MakeMutableCopyListPPP( list )
##
## Input: a list
##
## Output: a mutable copy of list
##
InstallMethod( MakeMutableCopyListPPP, [IsList], 
   function( list )
      local i, new_list;

      ## initialize
      new_list := [];

      ## copy recursively
      for i in [1..Length( list )] do
         if IsList( list[i] ) then 
            new_list[i] := MakeMutableCopyListPPP( list[i] );
         else new_list[i] := list[i];
         fi;
      od;

      return new_list;
   end);

#E MakeMutableCopyListPPP.gi . . . . . . . . . . . . . . . . . . . .  ends here

[ zur Elbe Produktseite wechseln0.117Quellennavigators  ]