You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interpreter should support sets, as well as a set API. Sets should be definable using the literal syntax #{ item1 item2 }. This also involves making ConsValue fully hashable and equatable. Implementation will probably use NSSet, since Swift does not yet have a native set type or API.
The text was updated successfully, but these errors were encountered:
Interpreter should support sets, as well as a set API. Sets should be definable using the literal syntax
#{ item1 item2 }
. This also involves makingConsValue
fully hashable and equatable. Implementation will probably useNSSet
, since Swift does not yet have a native set type or API.The text was updated successfully, but these errors were encountered: