pub trait Function {
    fn evaluate<'c, 'd>(
        &self,
        context: &Evaluation<'c, 'd>,
        args: Vec<Value<'d>>
    ) -> Result<Value<'d>, Error>; }
Expand description

Types that can be used as XPath functions.

Required Methods§

Evaluate this function in a specific context with a specific set of arguments.

Implementors§