> {-# OPTIONS_HADDOCK show-extensions #-}
>
> module LTK.Extract.TSL (forbiddenTierSubstrings) where
> import LTK.FSA
> import LTK.Extract.SL (ForbiddenSubstrings, forbiddenSubstrings)
> import LTK.Tiers
> import Data.Set (Set)
>
> forbiddenTierSubstrings :: (Ord e, Ord n, Enum n) =>
> FSA n e -> (Set e, ForbiddenSubstrings e)
> forbiddenTierSubstrings :: forall e n.
(Ord e, Ord n, Enum n) =>
FSA n e -> (Set e, ForbiddenSubstrings e)
forbiddenTierSubstrings FSA n e
f = (FSA n e -> Set e
forall n e. (Ord n, Ord e) => FSA n e -> Set e
tier FSA n e
f, FSA n e -> ForbiddenSubstrings e
forall e n.
(Ord e, Ord n, Enum n) =>
FSA n e -> ForbiddenSubstrings e
forbiddenSubstrings FSA n e
f)