packages feed

fnotation-0.2.0.1: src/FNotation.hs

-- SPDX-FileCopyrightText: 2026 Coln contributors
--
-- SPDX-License-Identifier: Apache-2.0 OR MIT

module FNotation (
  module FNotation.Config,
  module FNotation.Lexer,
  module FNotation.Names,
  module FNotation.Reader,
  module FNotation.Pretty,
  module FNotation.Kinds,
  module FNotation.Trees,
)
where

import FNotation.Config
import FNotation.Kinds (Kind)
import FNotation.Lexer (LexerCode (..), lex, lexerCodeTable)
import FNotation.Names
import FNotation.Pretty (dprettyWithConfigs)
import FNotation.Reader (ReaderCode (..), read, readerCodeTable)
import FNotation.Trees (Ntn, Ntn0, NtnGeneric (..), head, span, pattern Decl, pattern Group)