mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 03:33:50 +01:00
f2c7d449cc
for earlier commits, see TRIQS0.x repository.
26 lines
990 B
ReStructuredText
26 lines
990 B
ReStructuredText
.. highlight:: c
|
|
|
|
Operator() : summary
|
|
==================================
|
|
|
|
* To summarize the previous items, here is the list of possible call of array, matrix, vector and their view.
|
|
|
|
If A is an array, and Args ... the arguments, the return type of the call ::
|
|
|
|
A( Args ... args)
|
|
|
|
is summarized in the following table.
|
|
|
|
=========================================== ========================================================
|
|
Arguments Returns
|
|
=========================================== ========================================================
|
|
None a complete view of the array
|
|
One at least Args is clef expression a clef expression
|
|
Args is a set of Range, Ellipsis, size_t a view class representing the partial view
|
|
=========================================== ========================================================
|
|
|
|
|
|
* Example ::
|
|
|
|
// write here an example with several variant
|