In a Reader<E, A>
the E
parameter represents the environment to read a value of type A
from.
If I have a reader and an environment and would like to read the value from a reader via pipe
, one way of doing it is via:
const a = pipe(rdr, I.ap(e))
I wonder if the operation I.ap(e)
has a particular name in the scope of a reader that makes the intend more obvious?