class Chronic::TimeZone

def self.scan(tokens, options)

Returns:
  • (Array) - list of tokens

Parameters:
  • options (Hash) -- Options specified in {Chronic.parse}
  • tokens (Array) -- Array of tokens to scan
def self.scan(tokens, options)
  tokens.each do |token|
    if t = scan_for_all(token) then token.tag(t); next end
  end
end