Asynchronously - Once you have location, make a network call for a list of all hotels in the area for that user - Make a separate api call for each hotel to check for a) occupancy and b) price and c) ratings - Dynamically filter hotels based on preference - Update data as soon as it arrives
- From the good folks at Microsoft - Erik Meijer on the Microsoft .NET platform - Notoriously difficult to approach - also on .net, javascript, scala, kotlin, clojure, you get the picture
paradigm—a style of building the structure and elements of computer programs—that treats computation as the evaluation of mathematical functions and avoids changing-state and mutable data. It is a declarative programming paradigm, which means programming is done with expressions. In functional code, the output value of a function depends only on the arguments that are input to the function, so calling a function f twice with the same value for an argument x will produce the same result f(x) each time. Eliminating side effects, i.e. changes in state that do not depend on the function inputs, can make it much easier to understand and predict the behavior of a program, which is one of the key motivations for the development of functional programming.
oriented around data flows and the propagation of change. This means that it should be possible to express static or dynamic data flows with ease in the programming languages used, and that the underlying execution model will automatically propagate changes through the data flow. For example, in an imperative programming setting, a := b + c would mean that a is being assigned the result of b + c in the instant the expression is evaluated. Later, the values of b and c can be changed with no effect on the value of a.
more readable Complex operations made easy Operators help do complex tasks like filtering Easy threading Threading in ridiculously simple Easy error handling Error handling is just better Easy to test Unit testing your apps is simple
more Observables together via a specified function and emit items based on the results of this function - http://reactivex. io/documentation/operat ors/zip.html