@quenty/binarysearch 2.3.2-canary.635.9651b09.0 → 2.3.3-canary.45a29f2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -1
- package/package.json +2 -2
- package/src/Shared/BinarySearchUtils.lua +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## [2.3.
|
|
6
|
+
## [2.3.3-canary.45a29f2.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binarysearch@2.3.2...@quenty/binarysearch@2.3.3-canary.45a29f2.0) (2026-01-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/binarysearch
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.3.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/binarysearch@2.3.1...@quenty/binarysearch@2.3.2) (2026-01-12)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/binarysearch",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3-canary.45a29f2.0",
|
|
4
4
|
"description": "Binary search for Roblox",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "45a29f21a00d72d7971299695e28129d5b9d0cfb"
|
|
35
35
|
}
|
|
@@ -49,6 +49,13 @@ end
|
|
|
49
49
|
--[=[
|
|
50
50
|
Same as searching a span, but uses a list of nodes
|
|
51
51
|
|
|
52
|
+
```
|
|
53
|
+
if t lands within the domain of two spans of time
|
|
54
|
+
t = 5
|
|
55
|
+
[3 5][5 7]
|
|
56
|
+
^ picks this one
|
|
57
|
+
```
|
|
58
|
+
|
|
52
59
|
@param list { TNode }
|
|
53
60
|
@param index string
|
|
54
61
|
@param t number
|