/*! All material copyright ESRI, All Rights Reserved, unless otherwise specified.
See https://github.com/Esri/calcite-design-system/blob/dev/LICENSE.md for details.
v3.2.1 */functiongetRoundRobinIndex(index, total) {
return (index + total) % total;
}
export {
getRoundRobinIndex as g
};