Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
caf82be2
Commit
caf82be2
authored
Feb 08, 2015
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added reverse iterators
parent
87c250d8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
8 deletions
+56
-8
json.hpp
src/json.hpp
+0
-0
json.hpp.re2c
src/json.hpp.re2c
+56
-8
No files found.
src/json.hpp
View file @
caf82be2
This diff is collapsed.
Click to expand it.
src/json.hpp.re2c
View file @
caf82be2
...
@@ -84,6 +84,10 @@ class basic_json
...
@@ -84,6 +84,10 @@ class basic_json
using iterator = basic_json::iterator;
using iterator = basic_json::iterator;
/// a const iterator for a basic_json container
/// a const iterator for a basic_json container
using const_iterator = basic_json::const_iterator;
using const_iterator = basic_json::const_iterator;
// a reverse iterator for a basic_json container
using reverse_iterator = std::reverse_iterator<iterator>;
/// a const reverse iterator for a basic_json container
using const_reverse_iterator = std::reverse_iterator<const_iterator>;
///////////////////////////
///////////////////////////
...
@@ -255,6 +259,8 @@ class basic_json
...
@@ -255,6 +259,8 @@ class basic_json
std::enable_if<
std::enable_if<
not std::is_same<V, basic_json::iterator>::value and
not std::is_same<V, basic_json::iterator>::value and
not std::is_same<V, basic_json::const_iterator>::value and
not std::is_same<V, basic_json::const_iterator>::value and
not std::is_same<V, basic_json::reverse_iterator>::value and
not std::is_same<V, basic_json::const_reverse_iterator>::value and
std::is_constructible<basic_json, typename V::value_type>::value, int>::type
std::is_constructible<basic_json, typename V::value_type>::value, int>::type
= 0>
= 0>
inline basic_json(const V& value)
inline basic_json(const V& value)
...
@@ -437,7 +443,7 @@ class basic_json
...
@@ -437,7 +443,7 @@ class basic_json
: m_type(std::move(other.m_type)),
: m_type(std::move(other.m_type)),
m_value(std::move(other.m_value))
m_value(std::move(other.m_value))
{
{
// inval
u
date payload
// inval
i
date payload
other.m_type = value_t::null;
other.m_type = value_t::null;
other.m_value = {};
other.m_value = {};
}
}
...
@@ -461,23 +467,24 @@ class basic_json
...
@@ -461,23 +467,24 @@ class basic_json
m_value.object = nullptr;
m_value.object = nullptr;
break;
break;
}
}
case (value_t::array):
case (value_t::array):
{
{
delete m_value.array;
delete m_value.array;
m_value.array = nullptr;
m_value.array = nullptr;
break;
break;
}
}
case (value_t::string):
case (value_t::string):
{
{
delete m_value.string;
delete m_value.string;
m_value.string = nullptr;
m_value.string = nullptr;
break;
break;
}
}
case (value_t::null):
case (value_t::boolean):
default:
case (value_t::number_integer):
case (value_t::number_float):
{
{
// all other types need no specific destructor
break;
break;
}
}
}
}
...
@@ -815,6 +822,38 @@ class basic_json
...
@@ -815,6 +822,38 @@ class basic_json
return result;
return result;
}
}
/// returns a reverse iterator to the end of the container
inline reverse_iterator rbegin() const noexcept
{
reverse_iterator result(this);
result.set_end();
return result;
}
/// returns a reverse iterator to the beginning of the container
inline reverse_iterator rend() const noexcept
{
reverse_iterator result(this);
result.set_begin();
return result;
}
/// returns a const reverse iterator to the end of the container
inline const_reverse_iterator crbegin() const noexcept
{
const_reverse_iterator result(this);
result.set_end();
return result;
}
/// returns a const reverse iterator to the beginning of the container
inline const_reverse_iterator crend() const noexcept
{
const_reverse_iterator result(this);
result.set_begin();
return result;
}
//////////////
//////////////
// capacity //
// capacity //
...
@@ -839,11 +878,14 @@ class basic_json
...
@@ -839,11 +878,14 @@ class basic_json
{
{
return m_value.object->empty();
return m_value.object->empty();
}
}
}
default:
{
// all other types are nonempty
// all other types are nonempty
return false;
return false;
}
}
}
}
/// returns the number of elements
/// returns the number of elements
inline size_type size() const noexcept
inline size_type size() const noexcept
...
@@ -864,11 +906,14 @@ class basic_json
...
@@ -864,11 +906,14 @@ class basic_json
{
{
return m_value.object->size();
return m_value.object->size();
}
}
}
default:
{
// all other types have size 1
// all other types have size 1
return 1;
return 1;
}
}
}
}
/// returns the maximum possible number of elements
/// returns the maximum possible number of elements
inline size_type max_size() const noexcept
inline size_type max_size() const noexcept
...
@@ -889,11 +934,14 @@ class basic_json
...
@@ -889,11 +934,14 @@ class basic_json
{
{
return m_value.object->max_size();
return m_value.object->max_size();
}
}
}
default:
{
// all other types have max_size 1
// all other types have max_size 1
return 1;
return 1;
}
}
}
}
///////////////
///////////////
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment