Monad - simple example definition
Combines the following concept. 1. Functor - Type constructor. - Value lifting. - class Functor f where fmap :: (a -> b) -> (f a -> f b) 2. Bi...
Combines the following concept. 1. Functor - Type constructor. - Value lifting. - class Functor f where fmap :: (a -> b) -> (f a -> f b) 2. Bi...
Pseudo C++ example implementation of map function of optional in Java8 for functional style programming. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 2...
1 2 3 Collection.sort(list, Ordering.from((Comparator<Item>) Comparator.comparingInt(item -> item.getId())) .compound(Comparator.comparing(Item::g...
Nice article for C++17 features. http://www.bfilipek.com/2017/07/cpp17-details-simplifications.html
Adding the date in docker file so that user can update the data for every change. 1 2 FROM ENV REFRESHED_AT 2017-1-1