summaryrefslogtreecommitdiffstats
path: root/storage/mroonga/vendor/groonga/lib/mrb/scripts/id.rb
blob: a49e4fde60e65d68afbdf3e5f6d06267ba565711 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Groonga
  module ID
    # TODO: Should we bind GRN_N_RESERVED_TYPES?
    N_RESERVED_TYPES = 256

    class << self
      def builtin?(id)
        id < N_RESERVED_TYPES
      end
    end
  end
end