Expose function/predicate name parser

This commit is contained in:
Patrick Lühne 2020-04-18 02:32:12 +02:00
parent c927fe4628
commit 395c029ca9
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ mod terms;
pub(crate) use helpers::word_boundary;
pub(crate) use literals::{boolean, integer, special_integer, string};
pub(crate) use names::{function_or_predicate_name, variable_name};
pub use names::function_or_predicate_name;
pub(crate) use names::variable_name;
pub use terms::term;
pub use formulas::formula;