Where do the letters S, R, E, and A that are used as type parameters throughout fp-ts come from? I understand what they're for and how higher kinded types work in fp-ts, but why those _specific_ letters? I can make a guess for A, but the rest seem kind of random, at least to a native English speaker with no prior functional programming experience.
Also, what does URI stand for? I keep thinking Uniform Resource Identifier, but it doesn't follow the spec so I'm not really sure.
Apologies if this isn't the right place to ask. I can't find an answer anywhere, and individual letters are impossible to search for. Feel free to close whenever.
If I recall correctly
A: just the first alphabet letterE: Error (for example Either<E, A>)R: not sure, Resource? (for example ReaderTaskEither<R, E, A>). Haskell uses r tooS: State (for example StateReaderTaskEither<S, R, E, A>)URI: Unique Resource Idefntifier (but Uniform Resource Identifier would be pertinent as well IMO)This is a great question and response. Can we have this added to the docs under guides?
Most helpful comment
If I recall correctly
A: just the first alphabet letterE: Error (for exampleEither<E, A>)R: not sure, Resource? (for exampleReaderTaskEither<R, E, A>). Haskell usesrtooS: State (for exampleStateReaderTaskEither<S, R, E, A>)URI: Unique Resource Idefntifier (but Uniform Resource Identifier would be pertinent as well IMO)