| com.tc.jrexx.set.ISet_char
All known Subclasses: com.tc.jrexx.set.CharSet,
Inner Class :public interface Iterator | |
add | public boolean add(char ch)(Code) | | |
addAll | public void addAll(ISet_char set)(Code) | | adds all chars from set to this ISet_char without adding doublicates.
returns the number of chars added to this ISet_char.
|
clear | public void clear()(Code) | | return this.removeAll(set).
return C = A \ B = this \ set
|
complement | public void complement()(Code) | | |
contains | public boolean contains(char ch)(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
remove | public boolean remove(char ch)(Code) | | |
removeAll | public void removeAll(ISet_char set)(Code) | | Removes from this set all of its elements that are contained in the specified set (optional operation).
returns the number of chars that were removed.
|
|
|