struct Bob
{
threadsafe Atomic!(string[string]) y;
}
void f(ref threadsafe Bob b)
{
string[string] aa=b.y;
aa["b"]="c";
}
Like this?
struct Bob
{
threadsafe Atomic!(string[string]) y;
}
void f(ref threadsafe Bob b)
{
string[string] aa=b.y;
aa["b"]="c";
}
Like this?