/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright 2015-2018 Danny Robson */ #pragma once #include "cast.hpp" #include "types/traits.hpp" #include #include #include namespace cruft::strongdef { /// A transparent wrapper around a (typically lightweight) type for the /// purposes of overload disambiguation. It acts like a typesafe typedef. template class index { public: using value_type = T; using tag_type = TagT; // TODO: ideally we'd default the constructor, but templated // constructors can't be defaulted? So we just stub one out. constexpr explicit index () { ; } constexpr explicit index (cruft::types::identity_t const &_data): data (_data) { ; } constexpr index (index const&) = default; constexpr index (index &&) = default; index& operator= (T const &) = delete; index& operator= (index const &) = default; index& operator= (index &&) = default; // conversion operators must not be explicit or it defeats the point // of this class (ease of use, transparency). explicit operator const T& (void) const& { return data; } explicit operator T& (void) & { return data; } constexpr auto operator== (T const &) = delete; constexpr auto operator== (index const &rhs) const { return data == rhs.data; } constexpr auto operator!= (T const&) = delete; constexpr auto operator!= (index const &rhs) const { return data != rhs.data; } constexpr auto operator< (T const &) const = delete; constexpr auto operator< (index const &rhs) const { return data < rhs.data; } constexpr auto operator> (T const &) const = delete; constexpr auto operator> (index const &rhs) const { return data > rhs.data; } constexpr auto& operator++ (void)& { ++data; return *this; } constexpr T * operator-> () &{ return &data; } constexpr T const* operator-> () const &{ return &data; } constexpr T & operator* () &{ return data; } constexpr T const& operator* () const &{ return data; } private: value_type data; }; template std::ostream& operator<< (std::ostream &os, index const &val) { return os << +*val; } } template static auto indices (ContainerT const &obj) { using index_t = typename ContainerT::index_t; struct view { view (ContainerT const &_obj): m_obj (_obj) { ; } struct iterator { iterator (index_t _idx): idx (_idx) { ; } iterator& operator++ () { ++idx; return *this; } index_t const& operator* () const { return idx; } index_t const* operator-> () const { return &idx; } bool operator!= (iterator const &rhs) { return idx != rhs.idx; } private: index_t idx; }; iterator begin (void) const { return iterator (index_t (0)); } iterator end (void) const { return index_t ( cruft::cast::narrow< typename index_t::value_type > ( m_obj.size () ) ); } private: ContainerT const &m_obj; }; return view {obj}; } #include "types/description.hpp" namespace cruft::types { template struct arity_trait< ::cruft::strongdef::index > : arity_trait { ; }; template struct category_traits< ::cruft::strongdef::index > : public category_traits {}; }