Changeset 123:8899d1891a3c in lemon for lemon
- Timestamp:
- 04/08/08 22:51:26 (17 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/maps.h
r104 r123 117 117 118 118 /// Constructor with specified initial value. 119 /// \param v is the initial value of the map.119 /// \param v The initial value of the map. 120 120 ConstMap(const Value &v) : _value(v) {} 121 121 … … 142 142 inline ConstMap<K, V> constMap(const V &v) { 143 143 return ConstMap<K, V>(v); 144 } 145 146 template<typename K, typename V> 147 inline ConstMap<K, V> constMap() { 148 return ConstMap<K, V>(); 144 149 } 145 150 … … 614 619 typename V = typename F::result_type> 615 620 class FunctorToMap : public MapBase<K, V> { 616 const F &_f;621 F _f; 617 622 public: 618 623 typedef MapBase<K, V> Parent;
Note: See TracChangeset
for help on using the changeset viewer.