Remove TODO

This commit is contained in:
Justin Ethier 2016-12-02 03:52:51 -05:00
parent c867364d8f
commit 001abb78f4

View file

@ -1,7 +1,5 @@
# SRFI 113 - Sets and bags # SRFI 113 - Sets and bags
TODO: when this is done, need to update the API generation script to work with links that are not bulletted, but rather placed into sections. once that works, should consider reorganizing other SRFI docs in this manner, especially 1 and 106.
Sets and bags (also known as multisets) are unordered collections that can contain any Scheme object. Sets enforce the constraint that no two elements can be the same in the sense of the set's associated equality predicate; bags do not. Sets and bags (also known as multisets) are unordered collections that can contain any Scheme object. Sets enforce the constraint that no two elements can be the same in the sense of the set's associated equality predicate; bags do not.
Bags are like sets, but can contain the same object more than once. However, if two elements that are the same in the sense of the equality predicate, but not in the sense of eqv?, are both included, it is not guaranteed that they will remain distinct when retrieved from the bag. It is an error for a single procedure to be invoked on bags with different comparators. Bags are like sets, but can contain the same object more than once. However, if two elements that are the same in the sense of the equality predicate, but not in the sense of eqv?, are both included, it is not guaranteed that they will remain distinct when retrieved from the bag. It is an error for a single procedure to be invoked on bags with different comparators.