LeviLamina
Loading...
Searching...
No Matches
IRandom.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~IRandom() /*override*/;
19
20 // vIndex: 2
21 virtual int nextInt() = 0;
22
23 // vIndex: 1
24 virtual int nextInt(int) = 0;
25
26 // vIndex: 3
27 virtual int64 nextLong() = 0;
28
29 // vIndex: 4
30 virtual bool nextBoolean() = 0;
31
32 // vIndex: 5
33 virtual float nextFloat() = 0;
34
35 // vIndex: 6
36 virtual double nextDouble() = 0;
37
38 // vIndex: 7
39 virtual double nextGaussianDouble() = 0;
40
41 // vIndex: 8
42 virtual void consumeCount(uint) = 0;
43
44 // vIndex: 9
45 virtual ::std::unique_ptr<::IRandom> fork() = 0;
46
47 // vIndex: 10
48 virtual ::std::unique_ptr<::IPositionalRandomFactory> forkPositional();
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54 MCFOLD void $dtor();
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCFOLD ::std::unique_ptr<::IPositionalRandomFactory> $forkPositional();
61 // NOLINTEND
62};
Definition EnableNonOwnerReferences.h:7
Definition IPositionalRandomFactory.h:11
Definition IRandom.h:13