Widmogrod\Monad\Writer::ap PHP Method

ap() public method

public ap ( Widmogrod\FantasyLand\Apply $b )
$b Widmogrod\FantasyLand\Apply
    public function ap(FantasyLand\Apply $b)
    {
        return $this->bind(function ($f) use($b) {
            return $b->map($f);
        });
    }