diff --git a/include/ircd/array_view.h b/include/ircd/array_view.h deleted file mode 100644 index d955d4144..000000000 --- a/include/ircd/array_view.h +++ /dev/null @@ -1,114 +0,0 @@ -// Matrix Construct -// -// Copyright (C) Matrix Construct Developers, Authors & Contributors -// Copyright (C) 2016-2018 Jason Volk -// -// Permission to use, copy, modify, and/or distribute this software for any -// purpose with or without fee is hereby granted, provided that the above -// copyright notice and this permission notice is present in all copies. The -// full license for this software is available in the LICENSE file. - -#pragma once -#define HAVE_IRCD_ARRAY_VIEW_H - -namespace ircd -{ - template struct array_view; -} - -template -struct ircd::array_view -{ - using value_type = const T; - using pointer = value_type *; - using reference = value_type &; - using difference_type = size_t; - using iterator = value_type *; - using const_iterator = const value_type *; - - value_type *_data { nullptr }; - value_type *_stop { nullptr }; - - public: - const value_type *data() const { return _data; } - value_type *data() { return _data; } - - size_t size() const { return std::distance(_data, _stop); } - bool empty() const { return !size(); } - - const_iterator begin() const { return data(); } - const_iterator end() const { return _stop; } - const_iterator cbegin() { return data(); } - const_iterator cend() { return _stop; } - iterator begin() { return data(); } - iterator end() { return _stop; } - - const value_type &operator[](const size_t &pos) const - { - return *(data() + pos); - } - - value_type &operator[](const size_t &pos) - { - return *(data() + pos); - } - - const value_type &at(const size_t &pos) const - { - if(unlikely(pos >= size())) - throw std::out_of_range("array_view::range_check"); - - return operator[](pos); - } - - value_type &at(const size_t &pos) - { - if(unlikely(pos >= size())) - throw std::out_of_range("array_view::range_check"); - - return operator[](pos); - } - - array_view(value_type *const &start, value_type *const &stop) - :_data{start} - ,_stop{stop} - {} - - array_view(value_type *const &start, const size_t &size) - :array_view(start, start + size) - {} - - array_view(const std::initializer_list &list) - :array_view(std::begin(list), std::end(list)) - {} - - template - array_view(const std::vector &v) - :array_view(v.data(), v.size()) - {} - - template - array_view(std::vector &v) - :array_view(v.data(), v.size()) - {} - - template - array_view(value_type (&buffer)[SIZE]) - :array_view(buffer, SIZE) - {} - - template - array_view(const std::array &array) - :array_view(array.data(), array.size()) - {} - - template - array_view(std::array &array) - :array_view(array.data(), array.size()) - {} - - array_view() = default; -}; diff --git a/include/ircd/stdinc.h b/include/ircd/stdinc.h index b6530d9c8..50ddb779c 100644 --- a/include/ircd/stdinc.h +++ b/include/ircd/stdinc.h @@ -192,7 +192,6 @@ namespace ircd #include "string_view.h" #include "vector_view.h" -#include "array_view.h" #include "byte_view.h" #include "buffer.h" #include "allocator.h"