libcruft-util/pascal.hpp

65 lines
1.7 KiB
C++
Raw Normal View History

/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
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 util {
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&
2017-02-21 21:19:58 +11:00
operator<< (std::ostream&, util::parray<const char, SizeT>);
template <typename SizeT>
std::ostream&
operator<< (std::ostream&, util::parray<char, SizeT>);
template <typename DataT, typename SizeT>
std::ostream&
operator<< (std::ostream&, util::parray<DataT, SizeT>);
}
#endif