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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// Copyright 2025, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// Official repository: https://github.com/ocl-org/tproc
#ifndef OCL_TPROC_ROPE_FWD_INL
#define OCL_TPROC_ROPE_FWD_INL
#include <boost/system/error_code.hpp>
namespace ocl::tproc
{
template <class CharT, class Traits, class Allocator>
struct basic_rope<CharT, Traits, Allocator>::tree_impl
{
using char_type = CharT;
private:
std::allocator_traits<Allocator>::size_type size_;
char_type * head_, *tail_{};
boost::system::error_code ec_{};
public:
std::allocator_traits<Allocator>::size_type size()
{
return size_;
}
CharT* begin()
{
return head_;
}
CharT* end()
{
return tail_;
}
};
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::~basic_rope()
{
delete impl_;
impl_ = nullptr;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>&
basic_rope<CharT, Traits, Allocator>::operator=(
basic_rope<CharT, Traits, Allocator>&& other)
{
impl_ = std::exchange(other.impl_, nullptr);
return *this;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::basic_rope(
basic_rope<CharT, Traits, Allocator>&& other)
{
impl_ = std::exchange(other.impl_, nullptr);
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>&
basic_rope<CharT, Traits, Allocator>::operator=(basic_rope&& other)
{
impl_ = std::exchange(other.impl_, nullptr);
return *this;
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::basic_rope(basic_rope&& other)
{
impl_ = std::exchange(other.impl_, nullptr);
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::basic_rope(
const boost::core::basic_string_view<CharT>& in)
: impl_(new tree_impl())
{
}
template <class CharT, class Traits, class Allocator>
CharT* basic_rope<CharT, Traits, Allocator>::begin()
{
return impl_->begin();
}
template <class CharT, class Traits, class Allocator>
CharT* basic_rope<CharT, Traits, Allocator>::end()
{
return impl_->end();
}
template <class CharT, class Traits, class Allocator>
basic_rope<CharT, Traits, Allocator>::size_type
basic_rope<CharT, Traits, Allocator>::size()
{
return impl_->size();
}
template <class CharT, class Traits, class Allocator>
bool basic_rope<CharT, Traits, Allocator>::empty() const
{
return impl_->size() < 1UL;
}
} // namespace ocl::tproc
#endif
|