root package
package root
A library for writing custom string interpolation implementations via parser combinators
## Entry Points
If the string context should create an object:
Create leaf parsers using the methods in the Interpolator companion object,
combine and manipulate them with the methods in Interpolator,
then interpolate using the final Interpolator
's interpolate
method.
If the string context should create an extractor:
Create leaf parsers using the methods in the Extractor companion object,
combine and manipulate them with the methods in Extractor,
then interpolate using the final Extractor
's extractor
method.
If the string context should do both:
Create leaf parsers using the methods in the Parser companion object,
combine and manipulate them with the methods in Parser,
then interpolate using the final Parser
's interpolate
and extractor
methods.
A library for writing custom string interpolation implementations via parser combinators
## Entry Points
If the string context should create an object: Create leaf parsers using the methods in the Interpolator companion object, combine and manipulate them with the methods in Interpolator, then interpolate using the final
Interpolator
'sinterpolate
method.If the string context should create an extractor: Create leaf parsers using the methods in the Extractor companion object, combine and manipulate them with the methods in Extractor, then interpolate using the final
Extractor
'sextractor
method.If the string context should do both: Create leaf parsers using the methods in the Parser companion object, combine and manipulate them with the methods in Parser, then interpolate using the final
Parser
'sinterpolate
andextractor
methods.