-
Notifications
You must be signed in to change notification settings - Fork 35
Overload_CodeJam_Threading_InterlockedOperations_Initialize
Andrew Koryavchenko edited this page Jul 4, 2017
·
4 revisions
Name | Description | |
---|---|---|
Initialize(Double, Double) | Initialize the value referenced by target in a thread-safe manner. The value is changed to value only if the current value is default(double). | |
Initialize(Int32, Int32) | Initialize the value referenced by target in a thread-safe manner. The value is changed to value only if the current value is default(int). | |
Initialize(Int64, Int64) | Initialize the value referenced by target in a thread-safe manner. The value is changed to value only if the current value is default(long). | |
Initialize(Single, Single) | Initialize the value referenced by target in a thread-safe manner. The value is changed to value only if the current value is default(float). | |
Initialize(T)(T, T) | Initialize the value referenced by target in a thread-safe manner. The value is changed to value only if the current value is default(T). | |
Initialize(Double, Double, Double) | Initialize the value referenced by target in a thread-safe manner. The value is changed to initializedValue only if the current value is uninitializedValue. | |
Initialize(Int32, Int32, Int32) | Initialize the value referenced by target in a thread-safe manner. The value is changed to initializedValue only if the current value is uninitializedValue. | |
Initialize(Int64, Int64, Int64) | Initialize the value referenced by target in a thread-safe manner. The value is changed to initializedValue only if the current value is uninitializedValue. | |
Initialize(Single, Single, Single) | Initialize the value referenced by target in a thread-safe manner. The value is changed to initializedValue only if the current value is uninitializedValue. | |
Initialize(T)(T, T, T) | Initialize the value referenced by target in a thread-safe manner. The value is changed to initializedValue only if the current value is uninitializedValue. |