Packages
An Elixir library for working with HL7 v2.x healthcare data
Retired package: Release invalid - Bug introduced which would prevent get_part/2, get_parts/2, and replace_parts/3 to from working with binaries under specific conditons
Current section
Files
Jump to
Current section
Files
lib/hl7/invalid_grammar.ex
defmodule HL7.InvalidGrammar do
@moduledoc """
Contains information concerning any failed attempt to parse Field or Segment Grammar Notations.
"""
@type t :: %HL7.InvalidGrammar{
invalid_token: nil | String.t(),
schema: nil | String.t(),
reason: atom()
}
defstruct invalid_token: nil, schema: nil, reason: nil
end