Little repository structure refactoring: rename LICENSE to LICENSE.md

This commit is contained in:
2017-10-25 02:00:07 +07:00
parent 2a75b40f50
commit cb0dace254
2 changed files with 7 additions and 7 deletions

View File

View File

@@ -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<F>::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;
```
```