packages feed

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

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

import Lens.Micro ((^.))

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