File: issue-74.cpp

package info (click to toggle)
immer 0.8.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,132 kB
  • sloc: cpp: 27,932; python: 534; makefile: 227; lisp: 175; sh: 114; javascript: 64
file content (24 lines) | stat: -rw-r--r-- 447 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include "immer/box.hpp"
#include "immer/set.hpp"
#include "immer/vector.hpp"

#include <functional>

struct my_type
{
    using container_t = immer::vector<immer::box<my_type>>;
    using func_t      = std::function<int(int)>;

    int ival;
    double dval;
    func_t func;
    container_t children;
};

int main()
{
    my_type::container_t items = {my_type()};
    immer::set<int> items2;
    auto items3 = items2.insert(10);
    return 0;
}