| 69 | |
| 70 | template <class Target, class Begin, class End> |
| 71 | object getslice(Target const& target, Begin const& begin, End const& end) |
| 72 | { |
| 73 | return getslice(object(target), object(begin), object(end)); |
| 74 | } |
| 75 | |
| 76 | template <class Begin, class End, class Value> |
| 77 | void setslice(object const& target, Begin const& begin, End const& end, Value const& value) |