blob: 41c3623a4b4332c5b56034d6f4f0d015133e862e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef LIB_JXL_BASE_SPAN_H_
#define LIB_JXL_BASE_SPAN_H_
// Span (array view) is a non-owning container that provides cheap "cut"
// operations and could be used as "ArrayLike" data source for PaddedBytes.
#include <stddef.h>
#include "lib/jxl/base/status.h"
namespace jxl {
template <typename T>
class Span {
public:
constexpr Span() noexcept : Span(nullptr, 0) {}
constexpr Span(T* array, size_t length) noexcept
: ptr_(array), len_(length) {}
template <size_t N>
explicit constexpr Span(T (&a)[N]) noexcept : Span(a, N) {}
template <typename ArrayLike>
explicit constexpr Span(const ArrayLike& other) noexcept
: Span(reinterpret_cast<T*>(other.data()), other.size()) {
static_assert(sizeof(*other.data()) == sizeof(T),
"Incompatible type of source.");
}
constexpr T* data() const noexcept { return ptr_; }
constexpr size_t size() const noexcept { return len_; }
constexpr bool empty() const noexcept { return len_ == 0; }
constexpr T& operator[](size_t i) const noexcept {
// MSVC 2015 accepts this as constexpr, but not ptr_[i]
return *(data() + i);
}
void remove_prefix(size_t n) noexcept {
JXL_ASSERT(size() >= n);
ptr_ += n;
len_ -= n;
}
private:
T* ptr_;
size_t len_;
};
} // namespace jxl
#endif // LIB_JXL_BASE_SPAN_H_
|