-
Notifications
You must be signed in to change notification settings - Fork 209
/
Copy pathset.cpp
79 lines (63 loc) · 1.46 KB
/
set.cpp
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
// Copyright Fady Essam 2019. 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)
#include <boost/python/module.hpp>
#define BOOST_ENABLE_ASSERT_HANDLER
#include <boost/assert.hpp>
#include <boost/python/def.hpp>
#include <boost/python/class.hpp>
#include <boost/python/set.hpp>
#include <exception>
#include <string>
#include <iostream>
using namespace boost::python;
object new_set()
{
return set();
}
object data_set()
{
set tmp1;
tmp1.add("value1");
tmp1.add(2);
return tmp1;
}
object set_from_sequence(object sequence)
{
return set(sequence);
}
void work_with_set(set data1)
{
if (!data1.contains("k1")) {
std::cout << "data1 doesn't have k1" << std::endl;
}
data1.add("k1");
if (data1.contains("k1")) {
std::cout << "data1 now has k1" << std::endl;
}
data1.discard("k1");
if (!data1.contains("k1")) {
std::cout << "data1 doesn't have k1 again" << std::endl;
}
}
void test_templates(object print)
{
std::string key = "key";
set tmp;
tmp.add("a test string");
print(tmp);
tmp.add(13);
print(tmp.contains(1.5));
print(tmp.contains(13));
print(tmp);
BOOST_ASSERT(tmp.__len__() == 2);
}
BOOST_PYTHON_MODULE(set_ext)
{
def("new_set", new_set);
def("data_set", data_set);
def("set_from_sequence", set_from_sequence);
def("work_with_set", work_with_set);
def("test_templates", test_templates);
}
#include "module_tail.cpp"