3
0
mirror of https://github.com/triqs/dft_tools synced 2024-09-16 17:35:31 +02:00
This commit is contained in:
Olivier Parcollet 2019-04-25 15:48:21 -04:00
parent f9415b7385
commit 038b41bd47
2 changed files with 38 additions and 1 deletions

View File

@ -62,7 +62,9 @@ namespace app4triqs {
/**
* 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 j The second integer
@ -71,5 +73,26 @@ namespace app4triqs {
* @remark
*/
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

View File

@ -10,3 +10,17 @@ Table of contents
issues
about
Python
------
.. automodule:: app4triqs
:members:
Reference manual
----------------
.. toctree::
:maxdepth: 1
cpp2rst_generated/app4triqs/toto
cpp2rst_generated/app4triqs/chain