module Athena::Routing::Params::ParamFetcherInterface
#
Provides an API to fetch parameters from the current request.
Direct including types
Athena::Routing::Params::ParamFetcher
Methods#
abstract
#each(strict : Bool? = nil, & : String, _ -> Nil) : Nil
#
(strict : Bool? = nil, & : String, _ -> Nil) : Nil
Yields the name and value of each ART::Params::ParamInterface
related to the current ART::Action#params
.
Optionally allows determing if the params should be validated strictly. See the "Strict" section of ARTA::QueryParam
.
abstract
#get(name : String, strict : Bool? = nil)
#
(name : String, strict : Bool? = nil)
Returns the value of the parameter with the provided name.
Optionally allows determing if the params should be validated strictly. See the "Strict" section of ARTA::QueryParam
.