See #637 (comment). This is a proposal to consider the following renaming:
| Entity |
Now |
Proposed |
| Source |
g.source<T>(...) |
g.add_source<T>(...) |
| Transform |
g.transform(...) |
g.add_transform(...) |
| Fold |
g.fold(...) |
g.add_fold(...) |
| Unfold |
g.unfold(...) |
g.add_unfold(...) |
| Observer |
g.observe(...) |
g.add_observer(...) |
| Predicate |
g.predicate(...) |
g.add_predicate(...) |
| Provider |
g.provide(...) |
g.add_provider(...) |
Notice that for the HOFs (i.e., everything but the source), the form is changing from the "verb" being the HOF (e.g., g.observe(...)) to the "verb" being the "add" of the HOF.
See #637 (comment). This is a proposal to consider the following renaming:
g.source<T>(...)g.add_source<T>(...)g.transform(...)g.add_transform(...)g.fold(...)g.add_fold(...)g.unfold(...)g.add_unfold(...)g.observe(...)g.add_observer(...)g.predicate(...)g.add_predicate(...)g.provide(...)g.add_provider(...)Notice that for the HOFs (i.e., everything but the source), the form is changing from the "verb" being the HOF (e.g.,
g.observe(...)) to the "verb" being the "add" of the HOF.