lens-5.0.1: Lenses, Folds and Traversals
Copyright (C) 2012-16 Edward Kmett
License BSD-style (see the file LICENSE)
Maintainer Edward Kmett <ekmett@gmail.com>
Stability provisional
Portability portable
Safe Haskell Safe-Inferred
Language Haskell2010

Control.Lens.Extras

Description

A few extra names that didn't make it into Control.Lens.

Synopsis

Documentation

is :: APrism s t a b -> s -> Bool Source #

Check to see if this Prism matches.

>>> is _Left (Right 12)
False
>>> is hex "3f79"
True