deploy: v0.12 存档迁移+考古日志滚动条

This commit is contained in:
2026-06-24 03:04:38 +00:00
parent 4831505ef9
commit b4c6111516
58986 changed files with 7569452 additions and 31667 deletions
Generated Vendored
+50
View File
@@ -0,0 +1,50 @@
/**
* Working with value pairs.
*
* @module pair
*/
/**
* @template L,R
*/
export class Pair {
/**
* @param {L} left
* @param {R} right
*/
constructor (left, right) {
this.left = left
this.right = right
}
}
/**
* @template L,R
* @param {L} left
* @param {R} right
* @return {Pair<L,R>}
*/
export const create = (left, right) => new Pair(left, right)
/**
* @template L,R
* @param {R} right
* @param {L} left
* @return {Pair<L,R>}
*/
export const createReversed = (right, left) => new Pair(left, right)
/**
* @template L,R
* @param {Array<Pair<L,R>>} arr
* @param {function(L, R):any} f
*/
export const forEach = (arr, f) => arr.forEach(p => f(p.left, p.right))
/**
* @template L,R,X
* @param {Array<Pair<L,R>>} arr
* @param {function(L, R):X} f
* @return {Array<X>}
*/
export const map = (arr, f) => arr.map(p => f(p.left, p.right))