generated at
$>

<$の逆版
($>) :: Functor f => f a -> b -> f b


f a の要素を全部 b に置き換える

hs
>>> [1,2,3] $> "hoge" ["hoge","hoge","hoge"]