Closed danyaljj closed 8 years ago
How can we pass functions on top of classifier constraints? For example we can do sth like:
(C1 on i1).is("blah")
Can we pass a function f: String => String (e.g. substring):
f: String => String
(f(C1 on i1)).is("blah")
Similarly, currently we can add equality for two classifiers:
(C1 on i1).is(C2 on i2)
How can we pass functions f: String => String for this equality constraints?
(f1(C1 on i1)).is(f2(C2 on i2))
isn't this issue related to #167 which is assigned to @danyaljj ?
related to #167
How can we pass functions on top of classifier constraints? For example we can do sth like:
Can we pass a function
f: String => String
(e.g. substring):Similarly, currently we can add equality for two classifiers:
How can we pass functions
f: String => String
for this equality constraints?