Matrix3_3.st
changeset 5389 72cf3b22ba0f
parent 5136 761208260bf6
equal deleted inserted replaced
5388:534a32d00c8f 5389:72cf3b22ba0f
     1 "{ Encoding: utf8 }"
     1 "{ Encoding: utf8 }"
     2 
     2 
       
     3 "
       
     4  COPYRIGHT (c) 2018 by eXept Software AG
       
     5               All Rights Reserved
       
     6 
       
     7  This software is furnished under a license and may be used
       
     8  only in accordance with the terms of that license and with the
       
     9  inclusion of the above copyright notice.   This software may not
       
    10  be provided or otherwise made available to, or used by, any
       
    11  other person.  No title to or ownership of the software is
       
    12  hereby transferred.
       
    13 "
     3 "{ Package: 'stx:libbasic2' }"
    14 "{ Package: 'stx:libbasic2' }"
     4 
    15 
     5 "{ NameSpace: Smalltalk }"
    16 "{ NameSpace: Smalltalk }"
     6 
    17 
     7 SquareMatrix variableSubclass:#Matrix3_3
    18 SquareMatrix variableSubclass:#Matrix3_3
    10 	poolDictionaries:''
    21 	poolDictionaries:''
    11 	category:'Collections-MultiDimensional'
    22 	category:'Collections-MultiDimensional'
    12 !
    23 !
    13 
    24 
    14 !Matrix3_3 class methodsFor:'documentation'!
    25 !Matrix3_3 class methodsFor:'documentation'!
       
    26 
       
    27 copyright
       
    28 "
       
    29  COPYRIGHT (c) 2018 by eXept Software AG
       
    30               All Rights Reserved
       
    31 
       
    32  This software is furnished under a license and may be used
       
    33  only in accordance with the terms of that license and with the
       
    34  inclusion of the above copyright notice.   This software may not
       
    35  be provided or otherwise made available to, or used by, any
       
    36  other person.  No title to or ownership of the software is
       
    37  hereby transferred.
       
    38 "
       
    39 !
    15 
    40 
    16 documentation
    41 documentation
    17 "
    42 "
    18     3x3 Matrix (2 dimensions).
    43     3x3 Matrix (2 dimensions).
    19     Especially useful with the ArrayIndexing-Parser extension.
    44     Especially useful with the ArrayIndexing-Parser extension.