Implement ndarray.fill
and ndarray.copy
, miscellaneous bugs #386
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#386
Loading…
Reference in New Issue
No description provided.
Delete Branch "enhance/issue-149-ndarray"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
ndarray.fill
andndarray.copy
BTreeMap
to store type variable mappingndarray
subscript operator returning the wrong objectprint
statements to standalone demos@ -29,0 +38,4 @@
"-Wextra",
"-o",
"-",
],
If the only thing that changes is -O, put the match on that?
Updated to inline
match
into one of the arguments.e0d95bb0d8
to2edc1de0b6
@ -409,1 +430,3 @@
("unwrap".into(), unwrap_ty.0, DefinitionId(13)),
("is_some".into(), is_some_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.option.0 + 1)),
("is_none".into(), is_some_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.option.0 + 2)),
("unwrap".into(), unwrap_ty.0, DefinitionId(PRIMITIVE_DEF_IDS.option.0 + 3)),
Why are those three not PRIMITIVE_DEF_IDS entries of their own?
We currently only include classes in
PRIMITIVE_DEF_IDS
. We can also include def ids for functions when we refactor that into an enum as suggested in #385.