Skip to content

Instantly share code, notes, and snippets.

@brevzin

brevzin/lookup.h Secret

Created July 16, 2018 19:32
Show Gist options
  • Save brevzin/47d947b268d341b72b471e863e1cc3b0 to your computer and use it in GitHub Desktop.
Save brevzin/47d947b268d341b72b471e863e1cc3b0 to your computer and use it in GitHub Desktop.
class X {
private:
Container c;
public:
// #1: Return an optional
optional<V&> lookup(Key const&);
// #2: Return a pointer
V* lookup(Key const&);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment