Skip to content

Commit c243115

Browse files
committed
Gave AI credit and remove my email address
1 parent 0f9733f commit c243115

16 files changed

Lines changed: 152 additions & 22 deletions

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ We’re looking for users to test the library and provide feedback!
3131
Please open Issues or Discussions with any bug reports, questions, or feature ideas.
3232
**Note:** Direct code contributions are not accepted at this time.
3333

34+
35+
## Acknowledgments
36+
37+
Parts of this project, including some code generation and much of documentation, were assisted by GitHub Copilot (AI programming assistant). Copilot provided suggestions and support throughout the development process.
38+
3439
---
3540

3641
**AUTHOR:** MD. NASIF SADIK PRITHU
3742
**GITHUB:** [Creamy-pie-96](https://github.com/Creamy-pie-96)
3843

3944
---
40-
41-
## Acknowledgments
42-
43-
Parts of this project, including some code generation and much of documentation, were assisted by GitHub Copilot (AI programming assistant). Copilot provided suggestions and support throughout the development process.

docs/Math/math.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,4 +243,5 @@ print(degrees(pi())); // 180
243243
---
244244

245245
## Next Check
246+
246247
- [Error](../Errors/errors.md)

docs/Print/print.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,5 @@ int main() {
145145
While `print` and `pprint` are convenient for debugging and output, they may not be suitable for performance-sensitive logging. For large `var` objects or containers, consider serializing only the necessary parts to minimize overhead.
146146

147147
# Next Check
148+
148149
- [Var](../Var/var.md)

docs/Var/comparison_and_boolean.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,7 @@ try {
9696
- Comparison operators return `var` for Python-like chaining and high-level APIs.
9797
- Use `==`/`!=` for structural equality. Use `operator<(const var&)` for container ordering only.
9898
- Truthiness is determined by `operator bool()`; use in `if` or cast to `bool` as needed.
99+
100+
## Next check
101+
102+
- [Iterators, Mapping & Functional Helpers](iterators_mapping_functional.md)

docs/Var/construction_and_lifetime.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,3 +152,7 @@ print(copy, moved);
152152
- Use converter helpers for explicit conversion or factory creation.
153153
- Prefer move for large containers to avoid unnecessary copies.
154154
- All containers and graphs are stored as heap-backed types inside `var`.
155+
156+
## Next check
157+
158+
- [Type Introspection & Conversion](type_introspection_and_conversion.md)

docs/Var/container_and_sequence_operations.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,7 @@ var reduced_init = reduce(sum2, list(1, 2, 3), 10); // 16
133133
- Use `slice` or call syntax for sublists.
134134
- Use `items`, `keys`, `values` for dicts.
135135
- Iterators allow C++-style for loops over containers.
136+
137+
## Next check
138+
139+
- [String-like Methods (on string `var`)](string_like_methods.md)

docs/Var/dtypes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ This page lists all the data types and containers supported by `var` in Pythonic
5151
- For construction and API usage, see:
5252
- [Construction & Lifetime](Var/construction_and_lifetime.md)
5353
- [Container & Sequence Operations](Var/container_and_sequence_operations.md)
54-
- Graph support is provided via `VarGraph` (see graph.md).
54+
- Graph support is provided via [`VarGraph`](graph_helpers.md).
5555
- Additional container types (e.g., linked lists) may be added in the future.
5656

5757
---
5858

59-
## See Also
59+
## Next check
6060

6161
- [Construction & Lifetime](construction_and_lifetime.md)

docs/Var/graph_helpers.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,3 +156,8 @@ g.show(false);
156156
- For advanced graph algorithms, see the full API or source.
157157
158158
- `show(layout)` — If `layout` is true (default), the viewer will automatically arrange the graph layout. If false, the current node positions are preserved.
159+
160+
161+
# Next Check
162+
163+
- [Math](../Math/math.md)

docs/Var/iterators_mapping_functional.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,7 @@ print(unpack(std::make_tuple(1,2,3))); // [1,2,3]
8585
- All major iterator, mapping, and functional helpers are available for `var`.
8686
- Dict helpers (`items`, `keys`, `values`) only work for dict types.
8787
- Slicing supports negative indices and works for lists and strings.
88+
89+
## Next check
90+
91+
- [Graph Helpers (if using graph type)](graph_helpers.md)

docs/Var/numeric_arithmetic.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,7 @@ print(sum(list(1,2,3))); // 6
105105
- All arithmetic and bitwise operators are overloaded for `var` and work with numeric types and containers where appropriate.
106106
- Compound assignment operators (`+=`, `-=`, etc.) are supported.
107107
- Use `abs`, `min`, `max`, `sum` for numeric helpers.
108+
109+
## Next check
110+
111+
- [Comparison & Boolean](comparison_and_boolean.md)

0 commit comments

Comments
 (0)