Others Assume values are ordered, return the value range.
| 112 | // Others |
| 113 | // Assume values are ordered, return the value range. |
| 114 | Range<V> range() const { |
| 115 | return (empty() ? Range<V>(0,0) : Range<V>(front(), back()+1)); |
| 116 | } |
| 117 | V* data() const { return data_; } |
| 118 | const shared_ptr<void>& pointer() const { return ptr_; } |
| 119 | // number of non-zero entries |
no outgoing calls
no test coverage detected