-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAtomics.cs
More file actions
69 lines (65 loc) · 2.18 KB
/
Atomics.cs
File metadata and controls
69 lines (65 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//TODO! Disable missing XML comments.
#pragma warning disable CS1591
using CSharpToJavaScript.Utils;
using System;
using System.Drawing;
namespace CSharpToJavaScript.APIs.JS.Ecma;
[To(ToAttribute.Default)]
public partial class Atomics : ObjectPrototype
{
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic And<T>(T typedArray, int index, dynamic value) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic CompareExchange<T>(T typedArray, int index, dynamic expectedValue, dynamic replacementValue) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic Exchange<T>(T typedArray, int index, dynamic value) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public bool IsLockFree(int size )
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic Load<T>(T typedArray,int index) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic Or<T>(T typedArray, int index, dynamic value) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic Store<T>(T typedArray, int index, dynamic value) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic Sub<T>(T typedArray, int index, dynamic value) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public string Wait<T>(T typedArray, int index, dynamic value, int wait = 0) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public int Notify<T>(T typedArray, int index, int count = 0) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
[To(ToAttribute.FirstCharToLowerCase)]
public dynamic Xor<T>(T typedArray, int index, dynamic value) where T : TypedArray<T>
{
throw new System.NotImplementedException();
}
}