diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2019-05-04 22:31:05 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-05-04 23:31:05 +0200 |
commit | 90a7460d91e403add87967b000566e6cc70efb26 (patch) | |
tree | b8b73da3a90c9719d9e22f730e044a3898c4a555 /doc/manual.rst | |
parent | 6e4ea40475095a74c40f94b0d01e4d878661720f (diff) | |
download | Nim-90a7460d91e403add87967b000566e6cc70efb26.tar.gz |
Document bit fields usage (#11011)
Diffstat (limited to 'doc/manual.rst')
-rw-r--r-- | doc/manual.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index d4d2aae91..d7d50d2aa 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -1126,6 +1126,7 @@ as ``MyEnum.value``: echo amb # Error: Unclear whether it's MyEnum.amb or OtherEnum.amb echo MyEnum.amb # OK. +To implement bit fields with enums see `Bit fields <#set-type-bit-fields>`_ String type ----------- |