generic-lens-core-2.2.1.0: Generically derive traversals, lenses and prisms.
Copyright (C) 2020 Csongor Kiss
License BSD3
Maintainer Csongor Kiss <kiss.csongor.kiss@gmail.com>
Stability experimental
Portability non-portable
Safe Haskell None
Language Haskell2010

Data.Generics.Internal.Families

Description

Documentation

type family ShowSymbols (ctors :: [ Symbol ]) :: ErrorMessage where ... Source #

Equations

ShowSymbols '[] = ' Text ""
ShowSymbols (c ': cs) = (' Text "\8226 " :<>: ' Text c) :$$: ShowSymbols cs