mirror of
https://github.com/nim-lang/Nim.git
synced 2026-06-07 12:24:19 +00:00
documentation: remove author field [ci skip]
This commit is contained in:
@@ -7,8 +7,6 @@
|
||||
# distribution, for details about the copyright.
|
||||
#
|
||||
|
||||
## :Author: Alexander Mitchell-Robinson (Amrykid) and Nim contributors
|
||||
##
|
||||
## Although this module has ``seq`` in its name, it implements operations
|
||||
## not only for `seq`:idx: type, but for three built-in container types under
|
||||
## the ``openArray`` umbrella:
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
# distribution, for details about the copyright.
|
||||
#
|
||||
|
||||
## :Author: Nim contributors
|
||||
##
|
||||
## The ``tables`` module implements variants of an efficient `hash table`:idx:
|
||||
## (also often named `dictionary`:idx: in other programming languages) that is
|
||||
## a mapping from keys to values.
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
# distribution, for details about the copyright.
|
||||
#
|
||||
|
||||
## :Author: Nim contributors
|
||||
##
|
||||
## *Constructive mathematics is naturally typed.* -- Simon Thompson
|
||||
##
|
||||
## Basic math routines for Nim.
|
||||
@@ -237,7 +235,6 @@ proc cumsummed*[T](x: openArray[T]): seq[T] =
|
||||
## See also:
|
||||
## * `sum proc <#sum,openArray[T]>`_
|
||||
## * `cumsum proc <#cumsum,openArray[T]>`_ for the in-place version
|
||||
## * `cumsummed proc <#cumsummed,openArray[T]>`_
|
||||
runnableExamples:
|
||||
let a = [1, 2, 3, 4]
|
||||
doAssert cumsummed(a) == @[1, 3, 6, 10]
|
||||
|
||||
@@ -7,8 +7,6 @@
|
||||
# distribution, for details about the copyright.
|
||||
#
|
||||
|
||||
## :Author: Nim contributors
|
||||
##
|
||||
## The system module defines several common functions for working with strings,
|
||||
## such as:
|
||||
## * ``$`` for converting other data-types to strings
|
||||
|
||||
Reference in New Issue
Block a user