What does ::= mean in programming documentation?
For example in the Lua documentation: or in Python documentation.
What does ::= mean in programming documentation? For example in the Lua documentation :
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It symbolizes ‘symbol derivation rule’ in Backus–Naur Form
Meaning that in:
nonterminal
<symbol>consists of (is defined as, is constructed from, derives from)__expression__It’s used to describe language grammars.
Notice that both examples are in Extended Backus–Naur Form, but using a traditional BNF symbol-expression separator (
::=).