Operation |
Details |
public SetCode( String setCode): |
|
public SetCode( SetCode original): |
|
public WriteSet():string |
Notes: | decodes set code to code description
@returns set description | |
public static OneMemberSet( int orderOfSet):SetCode |
Notes: | creates code for item with index orderOfSet
@returns new object including desired set code | |
public static UnionSets( SetCode first, SetCode second):SetCode |
Notes: | Realizes operation union on two sets and returns result SetCode object
@returns result set | |
public ExcludeSet( SetCode smallSet):SetCode |
Notes: | Realizes operation exclude set from this set
@returns this set without smallSet | |
public static IsSubset( SetCode small, SetCode large):bool |
Notes: | Finds out if small set is subset of large set
@returns Decision whether small set is subset of large set | |
public IsEmptySet():bool |
Notes: | Finds out if this set is empty
@returns Decision whether this set is empty | |
public IsEqual( SetCode otherSet):bool |
Notes: | Finds out if this set is the same as input set
@returns Decision whether this set is qual to the otherSet or not | |