Sha256: 26f1fbb71e8561a96fa4a1a335c7b212ded395bfd4d83b5641cd08852a00b9fa
Contents?: true
Size: 484 Bytes
Versions: 19
Compression:
Stored size: 484 Bytes
Contents
/* Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ #include "atn/OrderedATNConfigSet.h" using namespace antlr4::atn; size_t OrderedATNConfigSet::hashCode(const ATNConfig &atnConfig) const { return atnConfig.hashCode(); } bool OrderedATNConfigSet::equals(const ATNConfig &lhs, const ATNConfig &rhs) const { return lhs == rhs; }
Version data entries
19 entries across 19 versions & 3 rubygems