barlix v0.4.0 Barlix.Code93 View Source
This module implements the Code 93 symbology.
Link to this section Summary
Functions
Encodes the given value using code 93 symbology.
Accepts the same arguments as encode/1
. Returns Barlix.code/0
or
raises Barlix.Error
in case of invalid value.
Link to this section Functions
Link to this function
encode(value)
View Source
encode(value)
View Source
encode(String.t() | charlist()) :: {:error, binary()} | {:ok, Barlix.code()}
encode(String.t() | charlist()) :: {:error, binary()} | {:ok, Barlix.code()}
Encodes the given value using code 93 symbology.
Link to this function
encode!(value)
View Source
encode!(value)
View Source
encode!(String.t() | charlist()) :: Barlix.code() | no_return()
encode!(String.t() | charlist()) :: Barlix.code() | no_return()
Accepts the same arguments as encode/1
. Returns Barlix.code/0
or
raises Barlix.Error
in case of invalid value.