mirror of
https://github.com/status-im/nim-stew.git
synced 2025-02-23 09:18:16 +00:00
16 lines
439 B
Nim
16 lines
439 B
Nim
|
import std/typetraits
|
||
|
export typetraits
|
||
|
|
||
|
when (NimMajor, NimMinor) < (1, 6): # Copy from `std/typetraits`
|
||
|
#
|
||
|
#
|
||
|
# Nim's Runtime Library
|
||
|
# (c) Copyright 2012 Nim Contributors
|
||
|
#
|
||
|
# See the file "copying.txt", included in this
|
||
|
# distribution, for details about the copyright.
|
||
|
#
|
||
|
|
||
|
type HoleyEnum* = (not Ordinal) and enum ## Enum with holes.
|
||
|
type OrdinalEnum* = Ordinal and enum ## Enum without holes.
|