Skip to content

Commit 6f0e141

Browse files
committed
head
1 parent bf31307 commit 6f0e141

37 files changed

+74
-38
lines changed

SysLib/Activator.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/04/22 14:17
44
--- Description : 按类型创建实例
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
local Activator = class.static("SysLib.Activator")
78

SysLib/Array.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/06/04 03:02
44
--- Description :
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67

78
---@class System.Array

SysLib/BitConverter.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/10/06 21:28
44
--- Description : 字节类型转换
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67

78
local BitConverter = class.static("SysLib.BitConverter")

SysLib/BitMath.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/03/04 19:41
44
--- Description :
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
---@class SysLib.BitMath
78
local BitMath = class.static("SysLib.BitMath")

SysLib/Collections/Dictionary.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/02/23 19:31
44
--- Description : 有序字典
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
---@class SysLib.Collections.Dictionary : SysLib.Object
78
local Dictionary, base = class.extends("SysLib.Collections.Dictionary", SysLib.Object)
@@ -15,7 +16,6 @@ local function indexof(table, key)
1516
return -1
1617
end
1718

18-
---public:
1919
function Dictionary:constructor()
2020
self.m_dict = {}
2121
self.m_index = {}

SysLib/Collections/IEnumerable.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/03/14 01:38
44
--- Description :
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
---
78
---@class SysLib.IEnumerable : SysLib.Object

SysLib/Collections/List.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/02/16 00:00
44
--- Description : 数组封装类,可以用lua迭代器访问
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
---@class SysLib.Collections.List : SysLib.Object
78
local List, base = class.extends("SysLib.Collections.List", SysLib.Object)

SysLib/Collections/Queue.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/03/17 16:48
44
--- Description :
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
---@class SysLib.Collections.Queue : SysLib.Object
78
local Queue, base = class.extends("SysLib.Collections.Queue", SysLib.Object)

SysLib/Collections/Stack.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/03/17 16:53
44
--- Description :
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
---@class SysLib.Collections.Stack : SysLib.Object
78
local Stack = class.extends("SysLib.Collections.Stack", SysLib.Object)

SysLib/Console.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
-------------------ModuleInfo-------------------
2-
--- Author : jx
2+
--- Author : jxy
33
--- Date : 2020/02/15 23:59
44
--- Description : 控制台接口
5+
--- https://github.com/JomiXedYu/JxCode.LuaSharp
56
------------------------------------------------
67
local Console = class.static("SysLib.Console")
78

0 commit comments

Comments
 (0)