Jump to content

Increment: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 16: Line 16:
* [[Increment operator]], the operator <code>++</code> in computer programming that increments a number by one (confer the [[decrement operator]] <code>--</code> that reduces the value of a number by one and the [[Lisp (programming language)|Lisp]] operators <code>1+</code> and <code>1-</code> that increment and decrement by one respectively<ref>[http://www.acadsolutions.biz/Tutorial_AutoLisp_1-02.htm]</ref>)
* [[Increment operator]], the operator <code>++</code> in computer programming that increments a number by one (confer the [[decrement operator]] <code>--</code> that reduces the value of a number by one and the [[Lisp (programming language)|Lisp]] operators <code>1+</code> and <code>1-</code> that increment and decrement by one respectively<ref>[http://www.acadsolutions.biz/Tutorial_AutoLisp_1-02.htm]</ref>)
* [[Concatenation|Concatenation operator]] for lists in [[Haskell (programming language)|Haskell]]
* [[Concatenation|Concatenation operator]] for lists in [[Haskell (programming language)|Haskell]]
<source lang="haskell>
<source lang="haskell">
["Wikipedia", "Wikimedia"] ++ ["Wiktionary", "Commons"] -- returns ["Wikipedia","Wikimedia","Wiktionary","Commons"]
["Wikipedia", "Wikimedia"] ++ ["Wiktionary", "Commons"] -- returns ["Wikipedia","Wikimedia","Wiktionary","Commons"]
</source>
</source>

Revision as of 10:07, 27 July 2010

An increment is an increase of some amount, either fixed or variable. For example one's salary may have a fixed annual increment or one based on a percentage of its current value. A decrease is called a decrement.

Increment or incremental may also refer to:

Computing

 
["Wikipedia", "Wikimedia"] ++ ["Wiktionary", "Commons"] -- returns ["Wikipedia","Wikimedia","Wiktionary","Commons"]

Economics

Gaming

See also

References

  1. ^ [1]