Squashed 'third_party/immer/' content from commit ad3e3556d
git-subtree-dir: third_party/immer git-subtree-split: ad3e3556d38bb75966dd24c61a774970a7c7957e
This commit is contained in:
commit
7f19d64164
311 changed files with 74223 additions and 0 deletions
34
example/vector/fizzbuzz.cpp
Normal file
34
example/vector/fizzbuzz.cpp
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <immer/vector.hpp>
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
// include:fizzbuzz/start
|
||||
immer::vector<std::string>
|
||||
fizzbuzz(immer::vector<std::string> v, int first, int last)
|
||||
{
|
||||
for (auto i = first; i < last; ++i)
|
||||
v = std::move(v).push_back(
|
||||
i % 15 == 0 ? "FizzBuzz"
|
||||
: i % 5 == 0 ? "Bizz"
|
||||
: i % 3 == 0 ? "Fizz" :
|
||||
/* else */ std::to_string(i));
|
||||
return v;
|
||||
}
|
||||
// include:fizzbuzz/end
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v = fizzbuzz({}, 0, 100);
|
||||
std::copy(v.begin(),
|
||||
v.end(),
|
||||
std::ostream_iterator<std::string>{std::cout, "\n"});
|
||||
}
|
||||
37
example/vector/gc.cpp
Normal file
37
example/vector/gc.cpp
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
// include:example/start
|
||||
#include <immer/heap/gc_heap.hpp>
|
||||
#include <immer/heap/heap_policy.hpp>
|
||||
#include <immer/memory_policy.hpp>
|
||||
#include <immer/refcount/no_refcount_policy.hpp>
|
||||
#include <immer/vector.hpp>
|
||||
|
||||
#include <iostream>
|
||||
|
||||
// declare a memory policy for using a tracing garbage collector
|
||||
using gc_policy = immer::memory_policy<immer::heap_policy<immer::gc_heap>,
|
||||
immer::no_refcount_policy,
|
||||
immer::gc_transience_policy,
|
||||
false>;
|
||||
|
||||
// alias the vector type so we are not concerned about memory policies
|
||||
// in the places where we actually use it
|
||||
template <typename T>
|
||||
using my_vector = immer::vector<T, gc_policy>;
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v =
|
||||
my_vector<const char*>().push_back("hello, ").push_back("world!\n");
|
||||
|
||||
for (auto s : v)
|
||||
std::cout << s;
|
||||
}
|
||||
// include:example/end
|
||||
22
example/vector/intro.cpp
Normal file
22
example/vector/intro.cpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
// include:intro/start
|
||||
#include <immer/vector.hpp>
|
||||
int main()
|
||||
{
|
||||
const auto v0 = immer::vector<int>{};
|
||||
const auto v1 = v0.push_back(13);
|
||||
assert((v0 == immer::vector<int>{}));
|
||||
assert((v1 == immer::vector<int>{13}));
|
||||
|
||||
const auto v2 = v1.set(0, 42);
|
||||
assert(v1[0] == 13);
|
||||
assert(v2[0] == 42);
|
||||
}
|
||||
// include:intro/end
|
||||
25
example/vector/iota-move.cpp
Normal file
25
example/vector/iota-move.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <immer/vector.hpp>
|
||||
#include <iostream>
|
||||
|
||||
// include:myiota/start
|
||||
immer::vector<int> myiota(immer::vector<int> v, int first, int last)
|
||||
{
|
||||
for (auto i = first; i < last; ++i)
|
||||
v = std::move(v).push_back(i);
|
||||
return v;
|
||||
}
|
||||
// include:myiota/end
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v = myiota({}, 0, 100);
|
||||
std::copy(v.begin(), v.end(), std::ostream_iterator<int>{std::cout, "\n"});
|
||||
}
|
||||
25
example/vector/iota-slow.cpp
Normal file
25
example/vector/iota-slow.cpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <immer/vector.hpp>
|
||||
#include <iostream>
|
||||
|
||||
// include:myiota/start
|
||||
immer::vector<int> myiota(immer::vector<int> v, int first, int last)
|
||||
{
|
||||
for (auto i = first; i < last; ++i)
|
||||
v = v.push_back(i);
|
||||
return v;
|
||||
}
|
||||
// include:myiota/end
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v = myiota({}, 0, 100);
|
||||
std::copy(v.begin(), v.end(), std::ostream_iterator<int>{std::cout, "\n"});
|
||||
}
|
||||
29
example/vector/iota-transient-std.cpp
Normal file
29
example/vector/iota-transient-std.cpp
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <immer/vector.hpp>
|
||||
#include <immer/vector_transient.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
|
||||
// include:myiota/start
|
||||
immer::vector<int> myiota(immer::vector<int> v, int first, int last)
|
||||
{
|
||||
auto t = v.transient();
|
||||
std::generate_n(
|
||||
std::back_inserter(t), last - first, [&] { return first++; });
|
||||
return t.persistent();
|
||||
}
|
||||
// include:myiota/end
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v = myiota({}, 0, 100);
|
||||
std::copy(v.begin(), v.end(), std::ostream_iterator<int>{std::cout, "\n"});
|
||||
}
|
||||
27
example/vector/iota-transient.cpp
Normal file
27
example/vector/iota-transient.cpp
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <immer/vector.hpp>
|
||||
#include <immer/vector_transient.hpp>
|
||||
#include <iostream>
|
||||
|
||||
// include:myiota/start
|
||||
immer::vector<int> myiota(immer::vector<int> v, int first, int last)
|
||||
{
|
||||
auto t = v.transient();
|
||||
for (auto i = first; i < last; ++i)
|
||||
t.push_back(i);
|
||||
return t.persistent();
|
||||
}
|
||||
// include:myiota/end
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v = myiota({}, 0, 100);
|
||||
std::copy(v.begin(), v.end(), std::ostream_iterator<int>{std::cout, "\n"});
|
||||
}
|
||||
35
example/vector/move.cpp
Normal file
35
example/vector/move.cpp
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <cassert>
|
||||
#include <immer/vector.hpp>
|
||||
|
||||
// include:move-bad/start
|
||||
immer::vector<int> do_stuff(const immer::vector<int> v)
|
||||
{
|
||||
return std::move(v).push_back(42);
|
||||
}
|
||||
// include:move-bad/end
|
||||
|
||||
// include:move-good/start
|
||||
immer::vector<int> do_stuff_better(immer::vector<int> v)
|
||||
{
|
||||
return std::move(v).push_back(42);
|
||||
}
|
||||
// include:move-good/end
|
||||
|
||||
int main()
|
||||
{
|
||||
auto v = immer::vector<int>{};
|
||||
auto v1 = do_stuff(v);
|
||||
auto v2 = do_stuff_better(v);
|
||||
assert(v1.size() == 1);
|
||||
assert(v2.size() == 1);
|
||||
assert(v1[0] == 42);
|
||||
assert(v2[0] == 42);
|
||||
}
|
||||
53
example/vector/vector.cpp
Normal file
53
example/vector/vector.cpp
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
//
|
||||
// immer: immutable data structures for C++
|
||||
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
|
||||
//
|
||||
// This software is distributed under the Boost Software License, Version 1.0.
|
||||
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
|
||||
//
|
||||
|
||||
#include <cassert>
|
||||
#include <immer/vector.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
// include:push-back/start
|
||||
auto v1 = immer::vector<int>{1};
|
||||
auto v2 = v1.push_back(8);
|
||||
|
||||
assert((v1 == immer::vector<int>{1}));
|
||||
assert((v2 == immer::vector<int>{1, 8}));
|
||||
// include:push-back/end
|
||||
}
|
||||
|
||||
{
|
||||
// include:set/start
|
||||
auto v1 = immer::vector<int>{1, 2, 3};
|
||||
auto v2 = v1.set(0, 5);
|
||||
|
||||
assert((v1 == immer::vector<int>{1, 2, 3}));
|
||||
assert((v2 == immer::vector<int>{5, 2, 3}));
|
||||
// include:set/end
|
||||
}
|
||||
|
||||
{
|
||||
// include:update/start
|
||||
auto v1 = immer::vector<int>{1, 2, 3, 4};
|
||||
auto v2 = v1.update(2, [&](auto l) { return ++l; });
|
||||
|
||||
assert((v1 == immer::vector<int>{1, 2, 3, 4}));
|
||||
assert((v2 == immer::vector<int>{1, 2, 4, 4}));
|
||||
// include:update/end
|
||||
}
|
||||
|
||||
{
|
||||
// include:take/start
|
||||
auto v1 = immer::vector<int>{1, 2, 3, 4, 5, 6};
|
||||
auto v2 = v1.take(3);
|
||||
|
||||
assert((v1 == immer::vector<int>{1, 2, 3, 4, 5, 6}));
|
||||
assert((v2 == immer::vector<int>{1, 2, 3}));
|
||||
// include:take/end
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue