2013 Minori Yamashita [email protected]
-- ここにあなたの名前を追記 --
2013 Minori Yamashita [email protected]
-- ここにあなたの名前を追記 --
/** | |
* This provides extensions for ECMA262 2015's iterator. | |
* | |
* This adds `map()`, `forEach()`, `filter()`, `flatMap()`, or others | |
* to `Iterable<T>`. This enables features looks like "lazy evaluation". | |
* The design refers RxJS v5's one. | |
* | |
* See example: | |
* ``` | |
* |
Introduction
Typically programming languages are initially created by an individual, a small group of designers, or as a project within a busin
Mizunashi Mana has waived all copyright and related or neighboring rights to MPL Notice Template.
{-# LANGUAGE AllowAmbiguousTypes #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE UndecidableInstances #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE TypeApplications #-} | |
module Data.Aeson.Extras where | |
import Data.Aeson |