Combine

Main entry point for the Combine API.

Summary

parse(input, parser)

Given an input string and a parser, applies the parser to the input string, and returns the results as a list, or an error tuple if an error occurs

parse_file(path, parser)

Given a file path and a parser, applies the parser to the file located at that path, and returns the results as a lsit, or an error tuple if an error occurs

Types

Functions

parse(input, parser)

Specs:

Given an input string and a parser, applies the parser to the input string, and returns the results as a list, or an error tuple if an error occurs.

parse_file(path, parser)

Specs:

Given a file path and a parser, applies the parser to the file located at that path, and returns the results as a lsit, or an error tuple if an error occurs.