DayOfWeekSet [constructor] | Constructors |
~DayOfWeekSet [destructor] | Destroy this object. |
operator= | Assign to this set the value of the specified rhs set, and return a reference providing modifiable access to this set. |
add | Add the specified value to this set. |
areMembers | Return true if this set contains all elements of the specified set, and false otherwise. |
bdexStreamIn | Assign to this object the value read from the specified input stream using the specified version format, and return a reference to stream. If stream is initially invalid, this operation has no effect. If version is not supported, this object is unaltered and stream is invalidated, but otherwise unmodified. If version is supported but stream becomes invalid during this operation, this object has an undefined, but valid, state. Note that no version is read from stream. See the bslx package-level documentation for more information on BDEX streaming of value-semantic types and containers. |
bdexStreamOut | Write the value of this object, using the specified version format, to the specified output stream, and return a reference to stream. If stream is initially invalid, this operation has no effect. If version is not supported, stream is invalidated, but otherwise unmodified. Note that version is not written to stream. See the bslx package-level documentation for more information on BDEX streaming of value-semantic types and containers. |
begin | Return an iterator referencing the first valid element in this set. |
end | Return an iterator indicating one position past the last possible element in this set. |
isEmpty | Return true if there are no elements in this set, and false otherwise. |
isMember | Return true if the specified value is an element of this set, and false otherwise. |
length | Return the number of elements in this set. |
operator&= | Assign to this set the intersection of this set with the specified rhs set (i.e., a set containing elements that are in both this set and the rhs set), and return a reference providing modifiable access to this set. |
operator-= | Assign to this set the subtraction of the specified rhs set from this set (i.e., a set containing elements that are in this set, but not in the rhs set), and return a reference providing modifiable access to this set. |
operator^= | Assign to this set the exclusive-or of this set with the specified rhs set (i.e., a set containing elements that are either in this set, but not rhs, or in rhs, but not in this set), and return a reference providing modifiable access to this set. |
operator|= | Assign to this set the union of this set with the specified rhs set (i.e., a set containing elements that are in either this set or the rhs set, or in both sets), and return a reference providing modifiable access to this set. |
print | Format this object to the specified output stream at the (absolute value of) the optionally specified indentation level, and return a reference to stream. If level is specified, optionally specify spacesPerLevel, the number of spaces per indentation level for this and all of its nested objects. If level is negative, suppress indentation of the first line. If spacesPerLevel is negative, format the entire output on one line, suppressing all but the initial indentation (as governed by level). If stream is not valid on entry, this operation has no effect. |
rbegin | Return a reverse iterator referencing the last valid element in this set. |
remove | Remove the specified value from this set. Return true if value was a member of this set, and false otherwise. |
removeAll | Remove all members of this set. |
rend | Return a reverse iterator indicating one position before the first possible element in this set. |