HL7.Query.map
You're seeing just the function
map
, go back to HL7.Query module for more information.
Specs
Maps across each selection with a fun
that accepts an HL7.Query
(handling one selection at a time) and returns a results list.
Examples
iex> import HL7.Query
iex> HL7.Examples.nist_immunization_hl7()
...> |> select("RXA")
...> |> map(fn q -> get_part(q, "5.2") end)
["Influenza", "PCV 13", "DTaP-Hep B-IPV"]