filter method

Future filter(
  1. dynamic db,
  2. dynamic pred
)

Returns a view over database that has same interface but only includes datoms for which the (pred db datom) is true. Can be applied multiple times.

Implementation

Future filter(db, pred) {
  throw UnimplementedError();
}