packages feed

brick-tabular-list-0.1.0.0: src/Brick/Widgets/TabularList/Internal/Lens.hs

-- | Alternate operators for microlens.
--
-- Since optic operators take precedence, microlens operators need to be given alternate names.
module Brick.Widgets.TabularList.Internal.Lens (
  (^^.)
) where

import Lens.Micro ((^.))


(^^.) = (^.)
{-# INLINE (^^.) #-}
infixl 8 ^^.