Commit Graph

136 Commits

Author SHA1 Message Date
9d901df68a feat(numeric): add basic random number generator function 2024-12-04 22:05:50 +08:00
123800bbbd test(string): using self numeric instead of standard library functions 2024-12-04 11:50:46 +08:00
c96995ea92 feat(numeric): add remaining standard math functions and the corresponding testing 2024-12-03 21:24:34 +08:00
f5c47fe677 feat(numeric): add basic and floating point manipulation functions and the corresponding testing 2024-11-27 19:03:54 +08:00
84a41387ae feat(numeric): add fixed-width literals, bit math functions and the corresponding testing 2024-11-27 16:58:39 +08:00
2d4dedd876 feat(string): add fundamental type parsing with format string but not elegant enough 2024-11-19 20:35:59 +08:00
6230ec9df6 feat(string): add fundamental type formatting with format string and adjust escape braces but not fully tested 2024-11-18 22:35:25 +08:00
f6f696d5a7 refactor(string): refactor string conversion and turning off default parsing options such as auto detect base 2024-11-16 22:21:31 +08:00
1c0c93ee25 refactor(string): refactor string conversion but not fully tested 2024-11-13 22:41:44 +08:00
3859070d53 feat(string): add string trimming functions 2024-11-12 17:21:36 +08:00
bc93455d0e refactor(string): refactor character and digit conversion to be non-invalidable 2024-11-12 13:32:43 +08:00
fe60fc33e0 feat(string): add string and arithmetic conversion functions 2024-11-11 22:30:15 +08:00
f8ef1da107 refactor(string): add base-checking to conversions between characters and digits 2024-11-11 12:20:29 +08:00
09bbcecc28 feat(string): add functions to categorize strings 2024-11-10 19:24:40 +08:00
90c2a37a2c feat(string): add TChar::IsASCII to determine if it is an ASCII character 2024-11-10 18:45:15 +08:00
43c59399d1 feat(string): add formatting without format string of arithmetic types to strings 2024-11-08 22:12:24 +08:00
d8803880f1 feat(string): add parsing of arithmetic types from strings 2024-11-08 20:46:57 +08:00
05af651232 feat(templates): add visit element by runtime index functions to TTuple 2024-11-05 23:02:34 +08:00
3ed3ec5258 refactor(string): refactor TString to inherit from TArray and without null-termination 2024-11-02 23:18:13 +08:00
2bb0ddee5b fix(containers): fix TArray lost all elements after move assignment 2024-11-02 23:07:05 +08:00
475b9e1958 feat(templates): add TOptional specialization for references 2024-11-02 15:27:21 +08:00
ec2a240c23 refactor(*): remove TObserverPtr and use raw pointer instead 2024-11-01 19:51:44 +08:00
9785326b18 feat(memory): add ToAddress and refactor the code with it 2024-11-01 15:11:45 +08:00
1cfa252779 fix(containers): remove qualifiers for Iterator::ElementType 2024-10-30 23:14:52 +08:00
700c901c7b perf(containers): refactor TArray and TList some functions by TConstantIterator 2024-10-29 21:19:44 +08:00
e73cf69cb9 feat(string): add string encoding conversion function 2024-10-29 20:44:38 +08:00
155044cc52 feat(containers): add TString and the corresponding testing 2024-10-28 17:51:21 +08:00
cc318f693f feat(string): add TStringView and remove TCString and merge it into TStringView 2024-10-27 11:29:45 +08:00
3df9122ef0 refactor(string): refactor TChar to enhance support for unicode 2024-10-26 21:15:27 +08:00
6c9beec4be refactor(string): use end sentinel instead of buffer size to simplify implementation and usage 2024-09-28 21:07:06 +08:00
790b7fd5e6 feat(miscellaneous): add support for c-style variadic functions and the corresponding testing 2024-09-21 22:03:39 +08:00
d137170ccb feat(string): add null-terminated byte string handling functions and the corresponding testing 2024-09-20 22:53:15 +08:00
5210db43b3 feat(string): add single character utility and the corresponding testing 2024-09-17 18:06:02 +08:00
977df63d24 feat(containers): add TList and the corresponding testing 2023-04-02 23:10:50 +08:00
1b33d3b166 feat(containers): add TStaticBitset and the corresponding testing 2023-03-15 23:10:48 +08:00
5021171324 fix(containers): remove operator<=> of TBitset because its order is not defined 2023-03-15 19:22:04 +08:00
dd8b698bb3 feat(containers): enable TBitset to support custom block type 2023-03-13 19:23:44 +08:00
432b6e0a6b feat(containers): add TBitset and the corresponding testing 2023-03-12 23:18:04 +08:00
a15ff69809 refactor(memory): remove FDefaultAllocator and directly specify a specific 2023-02-27 23:29:34 +08:00
c8650b4aa5 feat(containers): add TArrayView and use TObserverPtr instead of raw pointer 2023-02-26 21:55:36 +08:00
e9f780622f feat(containers): add TStaticArray and operations support 2023-02-24 19:09:22 +08:00
e8c9f9cc23 feat(memory): add TInlineAllocator and the corresponding testing 2023-02-22 23:33:10 +08:00
c4e0528d93 fix(memory): support for creating TUniqueRef object from MakeUnique() 2023-02-14 23:53:34 +08:00
fb0d1e978d refactor(memory): disable comparison of TUniquePtr and TSharedPtr with nullptr 2023-02-13 23:31:58 +08:00
0c54bbe2ac refactor(memory): remove FNoInit versions of MakeUnique() and MakeShared() 2023-02-13 21:56:16 +08:00
3efabc342f fix(memory): fix segfault error caused by freeing nullptr with Free() 2023-02-12 23:45:13 +08:00
05e62e1381 feat(containers): add TArray and the corresponding testing 2023-02-08 23:31:35 +08:00
c634c2757c feat(memory): add InOutPtr and the corresponding testing 2023-01-21 14:34:57 +08:00
0d99fad3f0 feat(memory): add TObserverPtr and the corresponding testing 2023-01-20 23:02:57 +08:00
1b2ea5c2a6 feat(templates): add TRetainedRef and the corresponding testing 2023-01-20 22:24:21 +08:00