diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md diff --git a/README.md b/README.md index 76eec39..185aabe 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ [circleci]: https://circleci.com/gh/BlackMATov/kari.hpp [appveyor]: https://ci.appveyor.com/project/BlackMATov/kari-hpp-arict -[license]: https://github.com/BlackMATov/kari.hpp/blob/master/LICENSE +[license]: https://github.com/BlackMATov/kari.hpp/blob/master/LICENSE.md [godbolt]: https://godbolt.org/g/XPBgjY [wandbox]: https://wandbox.org/permlink/l2PeuYUx2K2Yqbwj @@ -88,19 +88,19 @@ std::cout << c0 << "," << c1 << "," << c2 << std::endl; namespace kari { template < typename F, typename... Args > constexpr decltype(auto) curry(F&& f, Args&&... args) const; - + template < typename F, typename... Args > constexpr decltype(auto) curryV(F&& f, Args&&... args) const; - + template < std::size_t N, typename F, typename... Args > constexpr decltype(auto) curryN(F&& f, Args&&... args) const; - + template < typename F > struct is_curried; - + template < typename F > constexpr bool is_curried_v = is_curried::value; - + template < std::size_t N, typename F, typename... Args > struct curry_t { template < typename... As > @@ -232,4 +232,4 @@ auto r1 = ((_+2)*_)(_*2) * 10; // output: 24,22 std::cout << r0, << "," << r1 << std::endl; -``` \ No newline at end of file +```