Version: 2023.1
言語: 日本語
public bool Eval (TData element);

パラメーター

element A single object to be tested.

戻り値

bool True if the object passes the query, false otherwise.

説明

Implement this function to evaluate the query on a single element.


public IEnumerable<TData> Eval (TPayload payload);

パラメーター

payload The input data of the query.

戻り値

IEnumerable<TData> An enumerable of type TData.

説明

Implement this function to evaluate the query on a payload.