Membrane v0.1.0 Membrane.Parser View Source

This is an aggregate module that uses all the parsers and handles fallback value.

It imports all the 4 parsers:

Examples

iex> alias Membrane.Parser
Membrane.Parser
iex> Parser.parse(10, gt: 3)
true
iex> Parser.parse("hello", len: 6)
false
iex> Parser.parse([1, 2, 3], has: 3)
true