class Gamefic::Query::Result

The result of a query.

Attributes

match[R]

@return [Entity, Array<Entity>, String, nil]

remainder[R]

@return [String]

strictness[R]

Public Class Methods

new(match, remainder, strictness = 0) click to toggle source
# File lib/gamefic/query/result.rb, line 16
def initialize match, remainder, strictness = 0
  @match = match
  @remainder = remainder
  @strictness = strictness
end