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

Core Lib Documentation: fmt module #6652

Merged
merged 37 commits into from
Nov 26, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e5756a2
Array module
TAdev0 Oct 29, 2024
8290598
few additions
TAdev0 Oct 29, 2024
19e3322
fmt
TAdev0 Oct 29, 2024
7689558
fmt
TAdev0 Oct 29, 2024
f0d1476
last comment
TAdev0 Oct 29, 2024
1d5cf98
fmt
TAdev0 Oct 29, 2024
1095bd3
fmt
TAdev0 Oct 29, 2024
3c0db71
Update corelib/src/array.cairo
TAdev0 Oct 30, 2024
978fceb
Update corelib/src/array.cairo
TAdev0 Oct 30, 2024
010ca59
update
TAdev0 Oct 30, 2024
6fb6f83
Merge branch 'array' of https://github.com/cairo-book/cairo-core-lib …
TAdev0 Oct 30, 2024
5e6d5b9
address comments
TAdev0 Oct 30, 2024
a4281db
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
b661252
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
491a36e
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
0cb37c0
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
4ab4395
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
d93073d
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
8ca07d1
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
7d58c65
Update corelib/src/array.cairo
TAdev0 Nov 4, 2024
a56c766
typo
TAdev0 Nov 4, 2024
4467325
Merge branch 'main' of https://github.com/cairo-book/cairo-core-lib i…
TAdev0 Nov 4, 2024
5cfdcdf
address comments
TAdev0 Nov 4, 2024
2463e4a
more
TAdev0 Nov 4, 2024
ad4c1f8
address last comments
TAdev0 Nov 8, 2024
7ee6e1d
Merge remote-tracking branch 'upstream/main' into array
TAdev0 Nov 8, 2024
f1d15eb
address Orizi comments
TAdev0 Nov 11, 2024
6125b19
Merge pull request #1 from cairo-book/array
TAdev0 Nov 11, 2024
775954d
Merge remote-tracking branch 'upstream/main'
TAdev0 Nov 11, 2024
9f50b95
Merge remote-tracking branch 'upstream/main'
TAdev0 Nov 13, 2024
ae73123
fmt module
TAdev0 Nov 13, 2024
ba69884
fmt
TAdev0 Nov 13, 2024
08f767b
typo
TAdev0 Nov 13, 2024
0db093c
rename
TAdev0 Nov 13, 2024
5553d30
add internal link
TAdev0 Nov 13, 2024
15efec1
fmt
TAdev0 Nov 13, 2024
2cf8fcb
address Orizi comments
TAdev0 Nov 14, 2024
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
Prev Previous commit
Next Next commit
Update corelib/src/array.cairo
Co-authored-by: Mathieu <60658558+enitrat@users.noreply.github.com>
  • Loading branch information
TAdev0 and enitrat authored Nov 4, 2024
commit 7d58c658d342d78db5fb9021329671a70b8893dc
2 changes: 0 additions & 2 deletions corelib/src/array.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -916,8 +916,6 @@ trait FixedSizedArrayInfo<S> {
const SIZE: usize;
}

/// `FixedSizedArrayInfo` implementation for a fixed-size array of size `SIZE`,
/// containing elements of type `T`.
impl FixedSizedArrayInfoImpl<T, const SIZE: usize> of FixedSizedArrayInfo<[T; SIZE]> {
type Element = T;
const SIZE: usize = SIZE;
Expand Down