CPP07 1.0
読み取り中…
検索中…
一致する文字列を見つけられません
main.cpp ファイル

Main file to test the iter() function template. [詳解]

#include "iter.hpp"
#include <string>
main.cpp の依存先関係図:

[ソースコード]

関数

void addExclamation (std::string &s)
 A helper function that adds an exclamation mark to a string.
 
int main (void)
 The main entry point of the program.
 

詳解

Main file to test the iter() function template.

main.cpp に定義があります。

関数詳解

◆ addExclamation()

void addExclamation ( std::string s)

A helper function that adds an exclamation mark to a string.

引数
sThe string to modify.

main.cpp25 行目に定義があります。

◆ main()

int main ( void  )

The main entry point of the program.

This function demonstrates the usage of the iter() template function with various array types (int, const float, std::string) and functions.

戻り値
int Returns 0 upon successful execution.

main.cpp35 行目に定義があります。