blob: fb8ceff1277d1d5f9f13cf63c830efd656b4b54a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
-- DO NOT EDIT: This file is automatically generated by the internal tool ucd2haskell.
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_HADDOCK hide #-}
-----------------------------------------------------------------------------
-- |
-- Module : GHC.Unicode.Internal.Version
-- Copyright : (c) 2020 Composewell Technologies and Contributors
-- License : BSD-3-Clause
-- Maintainer : streamly@composewell.com
-- Stability : internal
-----------------------------------------------------------------------------
module GHC.Unicode.Internal.Version
(unicodeVersion)
where
import {-# SOURCE #-} Data.Version
-- | Version of Unicode standard used by @base@:
-- [15.0.0](https://www.unicode.org/versions/Unicode15.0.0/).
--
-- @since 4.15.0.0
unicodeVersion :: Version
unicodeVersion = makeVersion [15, 0, 0]
|