up previous next

EqSet

Syntax

EqSet(L:LIST,M:LIST):BOOL
    

Summary

checks if the set of elements in two lists are equal

Description

This function returns TRUE if Set(L) equals Set(M), otherwise it returns FALSE.

example

    
L := [1,2,2];
M := [2,1];
EqSet(L,M);
TRUE
-------------------------------
        
    

See Also