Lines Matching refs:Value
343 template< typename Container, typename Value >
350 mutable Value *my_value;
370 using value_type = Value;
371 using pointer = Value*;
372 using reference = Value&;
383 …er( other.my_container ), my_index( other.my_index), my_value( const_cast<Value *>(other.my_value)…
409 Value& operator*() const {
410 Value* value = my_value;
418 Value& operator[]( std::ptrdiff_t k ) const {
422 Value* operator->() const {return &operator*();}
495 template<typename SegmentedContainer, typename Value >
523 using value_type = Value;
525 using pointer = Value*;
526 using reference = Value&;