Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revival string list #470

Merged
merged 41 commits into from
Aug 26, 2021
Merged
Show file tree
Hide file tree
Changes from 39 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
405e06f
Add module for list of strings
arjenmarkus Feb 3, 2021
320caed
Correct typo
arjenmarkus Feb 4, 2021
c75dd20
fixed a bug in append_stringlist
aman-godara Jul 24, 2021
ecaa0bf
used concept of forward backward indexes, refactored code to use stdl…
aman-godara Jul 24, 2021
e7604bd
resolved stash conflicts
aman-godara Jul 24, 2021
bc9eda7
resolved 2 bugs, improved aesthetics of code
aman-godara Jul 24, 2021
5f72c18
added stringlist.f90 to cmakelists & makefile.manual
aman-godara Jul 28, 2021
9bbcdf7
blocked integer indexes, added copy function, added comments, stopped…
aman-godara Jul 28, 2021
0128f4e
cleaned PR and saved comments in another branch
aman-godara Jul 28, 2021
4bf2738
removed top comments
aman-godara Jul 28, 2021
5f8c484
resolved a bug in get, improved the implementation of the design
aman-godara Jul 31, 2021
7af5987
resolved a bug in destroy, added test cases
aman-godara Jul 31, 2021
e0e0a96
this might resolve the error
aman-godara Jul 31, 2021
3534150
added equality and inequality operators, added support for chararray …
aman-godara Aug 1, 2021
b577a54
added first test case
aman-godara Aug 1, 2021
9bfab34
Fix manual makefile build
awvwgk Aug 2, 2021
42487ea
added 2nd test case for insert_at
aman-godara Aug 2, 2021
3ddfa93
added 3rd test case for insert_at
aman-godara Aug 2, 2021
872b2cd
added test case for append prepend
aman-godara Aug 3, 2021
dd6aea1
cleared the previous documentation for string_list
aman-godara Aug 3, 2021
2918270
'100' is not equal to '100 ' in other compilers
aman-godara Aug 3, 2021
961a2e7
Makefile.manual takes backslash instead of slash
aman-godara Aug 3, 2021
9c758c0
added insert_at test cases for array and stringlist
aman-godara Aug 5, 2021
4db28c8
first draft of documentation: isnert_at, get, len, derived types
aman-godara Aug 8, 2021
afb318e
added constructor for carray & sarray, changed intent of clear_list s…
aman-godara Aug 15, 2021
a0c20cc
replaced copy function with appropriate comments
aman-godara Aug 15, 2021
35b28f5
solved bug: inserting a list in itself
aman-godara Aug 15, 2021
8ed81c0
added test cases for constructor stringlist_type()
aman-godara Aug 16, 2021
bca711f
added documentation for clear, constructor and fidx/bidx
aman-godara Aug 16, 2021
38052c2
corrected some bugs in documentation, added stringlist to index.md
aman-godara Aug 16, 2021
1584eeb
removed capacity function
aman-godara Aug 17, 2021
fb3ddd5
removed size component, changed the logic of len function, modified c…
aman-godara Aug 18, 2021
3777c04
renamed stringlist to stringlist_type
aman-godara Aug 18, 2021
948d064
made to_current_idxn as private
aman-godara Aug 19, 2021
f0a668c
Apply suggestions from code review
aman-godara Aug 19, 2021
4b69e3d
added constructor for string array and its test cases
aman-godara Aug 20, 2021
2c3bcdb
corrected some mistakes in the documentation
aman-godara Aug 20, 2021
9a0a33a
added documentation for operators //, == and /=
aman-godara Aug 20, 2021
2e5e822
some minor improvements in doc
aman-godara Aug 20, 2021
cea79e8
dependency to_string has been moved to stdlib_strings
aman-godara Aug 24, 2021
39297bd
Merge branch 'master' into revival_string_list
aman-godara Aug 24, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/specs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ This is and index/directory of the specifications (specs) for each new module/fe
- [stats_distribution_PRNG](./stdlib_stats_distribution_PRNG.html) - Probability Distributions random number generator
- [string\_type](./stdlib_string_type.html) - Basic string support
- [strings](./stdlib_strings.html) - String handling and manipulation routines
- [stringlist_type](./stdlib_stringlist_type.html) - 1-Dimensional list of strings

## Released/Stable Features & Modules

Expand Down
Loading