File tree Expand file tree Collapse file tree 7 files changed +29
-1
lines changed Expand file tree Collapse file tree 7 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 24
24
25
25
#include < string_view>
26
26
27
+ /* *
28
+ * @namespace steppable::constants
29
+ * @brief Numerical constants used in Steppable.
30
+ */
27
31
namespace steppable ::constants
28
32
{
29
33
// / @brief 100 digits of pi.
Original file line number Diff line number Diff line change 32
32
33
33
#include < exception>
34
34
35
+ /* *
36
+ * @namespace steppable::exceptions
37
+ * @brief Contains Steppable exceptions.
38
+ */
35
39
namespace steppable ::exceptions
36
40
{
37
41
/* *
Original file line number Diff line number Diff line change 43
43
#include < string>
44
44
#include < vector>
45
45
46
+ /* *
47
+ * @namespace steppable::__internals::format
48
+ * @brief Contains string formatting utilities.
49
+ */
46
50
namespace steppable ::__internals::format
47
51
{
48
52
// https://stackoverflow.com/a/49812356/14868780
Original file line number Diff line number Diff line change 51
51
#include < iostream>
52
52
#include < string>
53
53
54
+ /* *
55
+ * @namespace steppable::output
56
+ * @brief Message-printing utilities for Steppable.
57
+ */
54
58
namespace steppable ::output
55
59
{
56
60
using namespace steppable ::__internals;
Original file line number Diff line number Diff line change 38
38
#include < mutex>
39
39
40
40
/* *
41
- * @namespace steppable::__internals::util
41
+ * @namespace steppable::__internals::utils
42
42
* @brief Namespace for internal functions
43
43
* @note This namespace should not be used by other programs outside of the Steppable core.
44
44
*/
Original file line number Diff line number Diff line change @@ -83,6 +83,10 @@ using namespace std::literals;
83
83
return 1 ; \
84
84
}
85
85
86
+ /* *
87
+ * @namespace steppable::testing
88
+ * @brief Includes testing utilities for Steppable.
89
+ */
86
90
namespace steppable ::testing
87
91
{
88
92
/* *
Original file line number Diff line number Diff line change @@ -187,6 +187,10 @@ namespace steppable::__internals::utils
187
187
#endif
188
188
} // namespace steppable::__internals::utils
189
189
190
+ /* *
191
+ * @namespace steppable::__internals::numUtils
192
+ * @brief Utilities to operate numbers.
193
+ */
190
194
namespace steppable ::__internals::numUtils
191
195
{
192
196
/* *
@@ -342,6 +346,10 @@ namespace steppable::__internals::numUtils
342
346
bool isPowerOfTen (const std::string& number);
343
347
} // namespace steppable::__internals::numUtils
344
348
349
+ /* *
350
+ * @namespace steppable::__internals::stringUtils
351
+ * @brief Utilities to operate strings.
352
+ */
345
353
namespace steppable ::__internals::stringUtils
346
354
{
347
355
/* *
You can’t perform that action at this time.
0 commit comments