Searched refs:myCur (Results 1 – 1 of 1) sorted by relevance
244 std::unique_ptr<cursor_interface<T>> myCur; member in cpplinq::dynamic_cursor254 : myCur(other.myCur ? other.myCur->copy() : nullptr) in dynamic_cursor()259 : myCur(other.myCur.release()) in dynamic_cursor()265 : myCur(new instance<Cursor>(std::move(cursor))) in dynamic_cursor()275 bool empty() const { return !myCur || myCur->empty(); } in empty()276 void inc() { myCur->inc(); } in inc()277 T get() const { return myCur->get(); } in get()281 std::swap(myCur, other.myCur); in operator =()