json_force_inline bool peek_2()

in include/spotify/json/detail/decode_helpers.hpp [79:84]


json_force_inline bool peek_2(const decode_context &context, const char first, const char second) {
  if (context.remaining() < 2) {
    return false;
  }
  return first == *context.position && second == *(context.position + 1);
}