15 lines
375 B
Haskell
15 lines
375 B
Haskell
{-# LANGUAGE BangPatterns #-}
|
|
{-# LANGUAGE DeriveDataTypeable #-}
|
|
{-# LANGUAGE TypeFamilies #-}
|
|
{-# LANGUAGE RebindableSyntax #-}
|
|
{-# LANGUAGE NoImplicitPrelude #-}
|
|
-- |
|
|
-- Module : Basement.Block
|
|
-- License : BSD-style
|
|
-- Maintainer : Haskell Foundation
|
|
--
|
|
-- A Nat-sized version of Block
|
|
|
|
module Basement.BlockN (module X) where
|
|
|
|
import Basement.Sized.Block as X
|