File: Unsafe.hs

package info (click to toggle)
haskell-case-insensitive 1.2.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 212 kB
  • sloc: haskell: 223; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-# LANGUAGE CPP, NoImplicitPrelude #-}

#if __GLASGOW_HASKELL__ >= 704
{-# LANGUAGE Unsafe #-}
#endif

-----------------------------------------------------------------------------
-- |
-- Module      :  Data.CaseInsensitive.Unsafe
-- Copyright   :  (c) 2011-2013 Bas van Dijk
-- License     :  BSD-style (see the file LICENSE)
-- Maintainer  :  Bas van Dijk <v.dijk.bas@gmail.com>
--
-- Provides an unsafe way to create a case insensitive string-like value.
--
-----------------------------------------------------------------------------

module Data.CaseInsensitive.Unsafe   ( unsafeMk ) where
import Data.CaseInsensitive.Internal ( unsafeMk )