Documentation
/*
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--

SJ

Copyright (C) 2019-2025  Anonymous

There are several releases over multiple years,
they are listed as ranges, such as: "2019-2025".

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

::--::--::--::--::--::--::--::--::--::--::--::--::--::--::--::--
*/

//! # Array Indexes

mod inner;

use {
    core::ops::RangeTo,
    self::inner::Inner,
};

/// # Array Indexes
///
/// You rarely use this directly. See [shortcuts for arrays][enum:Json#shortcuts-for-array] for examples.
///
/// [enum:Json#shortcuts-for-array]: enum.Json.html#shortcuts-for-array
#[derive(Debug)]
pub struct ArrayIndexes<'a, const N: usize> {

    inner: Inner<'a, N>,

}

impl<const N: usize> ArrayIndexes<'_, N> {

    /// # Makes new iterator
    pub (crate) fn iter(&self) -> impl Iterator<Item=&usize> {
        match &self.inner {
            Inner::Slice(slice) => slice.iter(),
            Inner::Array(array) => array.iter(),
        }
   }

    /// # Length
    pub (crate) fn len(&self) -> usize {
        match &self.inner {
            Inner::Slice(slice) => slice.len(),
            Inner::Array(array) => array.len(),
        }
    }

    /// # Indexing with `RangeTo` (for logging)
    pub (crate) fn index_with_range_to(&self, range: RangeTo<usize>) -> &[usize] {
        &self.inner[range]
    }

}

impl From<usize> for ArrayIndexes<'_, 1> {

    fn from(index: usize) -> Self {
        Self {
            inner: Inner::Array([index]),
        }
    }

}

impl<const N: usize> From<[usize; N]> for ArrayIndexes<'_, N> {

    fn from(indexes: [usize; N]) -> Self {
        Self {
            inner: Inner::Array(indexes),
        }
    }

}

impl<'a> From<&'a [usize]> for ArrayIndexes<'a, 0> {

    fn from(indexes: &'a [usize]) -> Self {
        Self {
            inner: Inner::Slice(indexes),
        }
    }

}