There's this thing called Reactive Extensions also called ReactiveX. http://reactivex.io/intro.html
The introduction has this part where it states:
"It is sometimes called “functional reactive programming” but this is a misnomer. ReactiveX may be functional, and it may be reactive, but “functional reactive programming” is a different animal. One main point of difference is that functional reactive programming operates on values that change continuously over time, while ReactiveX operates on discrete values that are emitted over time. (See Conal Elliott’s work for more-precise information on functional reactive programming.)"
Now if I want to understand/write about Reactive Extensions? Does this mean FRP <: Reactive Extensions So Reactive extensions should also cover FRP. Or these two [FRP and ReactiveX] or [Continuous Time and Discrete Time] are two different concepts, should not be treated the same?