Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
14
venv/lib/python3.12/site-packages/sympy/codegen/cxxnodes.py
Normal file
14
venv/lib/python3.12/site-packages/sympy/codegen/cxxnodes.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
"""
|
||||
AST nodes specific to C++.
|
||||
"""
|
||||
|
||||
from sympy.codegen.ast import Attribute, String, Token, Type, none
|
||||
|
||||
class using(Token):
|
||||
""" Represents a 'using' statement in C++ """
|
||||
__slots__ = _fields = ('type', 'alias')
|
||||
defaults = {'alias': none}
|
||||
_construct_type = Type
|
||||
_construct_alias = String
|
||||
|
||||
constexpr = Attribute('constexpr')
|
||||
Loading…
Add table
Add a link
Reference in a new issue