Ergo.Context.parser_tracked-question-mark

You're seeing just the function parser_tracked-question-mark, go back to Ergo.Context module for more information.
Link to this function

parser_tracked?(context, ref)

Returns truthy value if the parser referred to by ref has already been called for the index index.

Examples

iex> alias Ergo.Context iex> parser_ref = 123 iex> context = Context.new("Hello World") |> Context.track_parser(parser_ref, :foo) iex> assert Context.parser_tracked?(context, parser_ref)