libcruft-util/pascal.hpp

57 lines
1.3 KiB
C++
Raw Normal View History

/*
2018-08-04 15:14:06 +10:00
* 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/.
*
2016-03-17 18:10:46 +11:00
* Copyright 2010-2016 Danny Robson <danny@nerdcruft.net>
*/
#ifndef __UTIL_PASCAL_HPP
#define __UTIL_PASCAL_HPP
#include <cstdlib>
2018-03-22 16:10:06 +11:00
#include <iosfwd>
namespace cruft {
2017-02-21 21:19:58 +11:00
template <typename DataT, typename SizeT = std::size_t>
2016-03-17 18:10:46 +11:00
class parray {
public:
2017-02-21 21:19:58 +11:00
parray (SizeT size, DataT *data);
2017-02-21 21:19:58 +11:00
DataT& operator[] (SizeT idx);
const DataT& operator[] (SizeT idx) const;
2017-02-21 21:19:58 +11:00
DataT& at (SizeT idx);
const DataT& at (SizeT idx) const;
2017-02-21 21:19:58 +11:00
DataT* begin (void);
DataT* end (void);
2017-02-21 21:19:58 +11:00
const DataT* cbegin (void) const;
const DataT* cend (void) const;
2016-03-17 18:10:46 +11:00
2017-02-21 21:19:58 +11:00
const DataT* data (void) const;
DataT* data (void);
SizeT size (void) const;
2016-03-17 18:10:46 +11:00
private:
2017-02-21 21:19:58 +11:00
const SizeT m_size;
DataT *m_data;
};
2017-02-21 21:19:58 +11:00
template <typename SizeT>
2016-03-17 18:10:46 +11:00
std::ostream&
operator<< (std::ostream&, cruft::parray<const char, SizeT>);
2017-02-21 21:19:58 +11:00
template <typename SizeT>
std::ostream&
operator<< (std::ostream&, cruft::parray<char, SizeT>);
2017-02-21 21:19:58 +11:00
template <typename DataT, typename SizeT>
std::ostream&
operator<< (std::ostream&, cruft::parray<DataT, SizeT>);
}
#endif