Skip to content

Commit

Permalink
Deployed 42fae2c to master with MkDocs 1.5.3 and mike 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 18, 2024
1 parent 2ec03c5 commit d498ed7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 15 deletions.
2 changes: 1 addition & 1 deletion latest
19 changes: 9 additions & 10 deletions master/nimlite/numpy.nim
Original file line number Diff line number Diff line change
Expand Up @@ -1306,16 +1306,15 @@ iterator iterateFloatPage*(page: BaseNDArray): float =
else: raise newException(ValueError, "invalid page type: " & $page.kind)

iterator iterateBooleanPage*(page: BaseNDArray): bool =
yield true
# case page.kind:
# of K_BOOLEAN:
# for v in BooleanNDArray(page).pgIter:
# yield v
# of K_OBJECT:
# page.validatePageKind(K_BOOLEAN)
# for v in ObjectNDArray(page).pgIter:
# yield PY_Boolean(v).value
# else: raise newException(ValueError, "invalid page type: " & $page.kind)
case page.kind:
of K_BOOLEAN:
for v in BooleanNDArray(page).pgIter:
yield v
of K_OBJECT:
page.validatePageKind(K_BOOLEAN)
for v in ObjectNDArray(page).pgIter:
yield PY_Boolean(v).value
else: raise newException(ValueError, "invalid page type: " & $page.kind)


iterator iterateStringPage*(page: BaseNDArray): string =
Expand Down
Binary file modified master/sitemap.xml.gz
Binary file not shown.
8 changes: 4 additions & 4 deletions versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
{
"version": "master",
"title": "master",
"aliases": []
"aliases": [
"latest"
]
},
{
"version": "2023.10.12",
"title": "2023.10.12",
"aliases": [
"latest"
]
"aliases": []
},
{
"version": "2023.10.11",
Expand Down

0 comments on commit d498ed7

Please sign in to comment.