0

the every method is defined as

...
def every
  per(:map)
end
...

does facets define a method for

...
    # name not relevant
def find_where
  per(:find) # or :detect
end
...

I've checked the documentation, most likely I'm just missing it

jtzero
  • 2,204
  • 2
  • 25
  • 44

1 Answers1

0

actually it sort of is in their docs Using fluid notation

([1,2,3].per.map + 3) or in my case ([1,2,3].per.find == 3)

jtzero
  • 2,204
  • 2
  • 25
  • 44