import { a as ascending } from './ascending.js';
import { b as bisector } from './bisector.js';
import { n as number } from './number.js';
const ascendingBisect = bisector(ascending);
const bisectRight = ascendingBisect.right;
bisector(number).center;
export { bisectRight as b };