All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencds.cqf.cql.engine.data.ExternalFunctionProvider Maven / Gradle / Ivy

Go to download

The engine library for the Clinical Quality Language Java reference implementation

There is a newer version: 3.18.0
Show newest version
package org.opencds.cqf.cql.engine.data;

import java.util.List;

public interface ExternalFunctionProvider {
    Object evaluate(String staticFunctionName, List arguments);
}