mirror of
https://github.com/triqs/dft_tools
synced 2024-12-22 20:34:38 +01:00
minor
This commit is contained in:
parent
f9415b7385
commit
038b41bd47
@ -62,7 +62,9 @@ namespace app4triqs {
|
|||||||
/**
|
/**
|
||||||
* Chain digits of two integers
|
* Chain digits of two integers
|
||||||
*
|
*
|
||||||
* Chain the decimal digits of two integers i and j, and return the result
|
* @head A set of functions that implement chaining
|
||||||
|
*
|
||||||
|
* @tail Do I really need to explain more ?
|
||||||
*
|
*
|
||||||
* @param i The first integer
|
* @param i The first integer
|
||||||
* @param j The second integer
|
* @param j The second integer
|
||||||
@ -71,5 +73,26 @@ namespace app4triqs {
|
|||||||
* @remark
|
* @remark
|
||||||
*/
|
*/
|
||||||
int chain(int i, int j);
|
int chain(int i, int j);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Chain digits of three integers
|
||||||
|
*
|
||||||
|
* @param i The first integer
|
||||||
|
* @param j The second integer
|
||||||
|
* @param k The third integer
|
||||||
|
* @return An integer containing the digits of both i and j
|
||||||
|
*
|
||||||
|
* @remark
|
||||||
|
*/
|
||||||
|
int chain(int i, int j, int k);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Chain digits of one integers
|
||||||
|
*
|
||||||
|
* @param i The first integer
|
||||||
|
*
|
||||||
|
* @remark
|
||||||
|
*/
|
||||||
|
int chain(int i);
|
||||||
|
|
||||||
} // namespace app4triqs
|
} // namespace app4triqs
|
||||||
|
@ -10,3 +10,17 @@ Table of contents
|
|||||||
issues
|
issues
|
||||||
about
|
about
|
||||||
|
|
||||||
|
Python
|
||||||
|
------
|
||||||
|
|
||||||
|
.. automodule:: app4triqs
|
||||||
|
:members:
|
||||||
|
|
||||||
|
Reference manual
|
||||||
|
----------------
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
|
||||||
|
cpp2rst_generated/app4triqs/toto
|
||||||
|
cpp2rst_generated/app4triqs/chain
|
||||||
|
Loading…
Reference in New Issue
Block a user