As in the subject, I can't find this in the documentation. Can anyone provide an example? I know I can do DualView
@Char-Aznable does something go wrong if you just try DualView<int> ?
Yes, use DualView<int> as @ibaned suggested, and remember that you still have to use () for accessing the value, even though the parentheses are empty.
@stanmoore1 I didn't know I can call () without argument. I guess it's something like this?
DualView<int> a("a");
a.h_view() = 1;
Yeah that should be correct.