Spaces:
Sleeping
Sleeping
File size: 337 Bytes
db75f77 | 1 2 3 4 5 6 7 8 9 10 | import ascending from "./ascending.js";
import bisector from "./bisector.js";
import number from "./number.js";
const ascendingBisect = bisector(ascending);
export const bisectRight = ascendingBisect.right;
export const bisectLeft = ascendingBisect.left;
export const bisectCenter = bisector(number).center;
export default bisectRight;
|