Brian Fiete
c6f1f358a9
Added multi-line custom build command
2020-06-22 08:49:23 -07:00
Brian Fiete
85279be033
Allow binary search with alt key
2020-06-21 07:51:21 -07:00
Brian Fiete
1a17780847
Added Exit
2020-06-20 09:49:47 -07:00
Brian Fiete
6be24a2734
Fixed double formatting
2020-06-20 05:14:06 -07:00
Brian Fiete
82a108714d
Added more 'alt' lookups
2020-06-19 06:41:50 -07:00
Brian Fiete
f6e31e4976
Added ReturnType
2020-06-18 04:29:31 -07:00
Brian Fiete
abeda6909b
Added concept of strict equality
2020-06-17 05:13:53 -07:00
Brian Fiete
e1559b5686
Moving IRawAllocator
2020-06-16 10:34:09 -07:00
Brian Fiete
1a64a87cc6
Adding StdAllocator
2020-06-16 10:33:52 -07:00
Brian Fiete
116a519f4e
Fixed comment about default
2020-06-16 10:21:37 -07:00
Brian Fiete
52033be6ad
Listens to Static/Instance flags for method enumeration
2020-06-16 07:51:16 -07:00
Brian Fiete
d463832168
Added more editor keys and commands
2020-06-13 15:55:08 -07:00
Brian Fiete
5da74382d4
Interop fixes and tests, fixing xplat struct passing issues
2020-06-10 07:12:07 -07:00
Brian Fiete
a955361f6a
Corlib fixes
2020-06-10 05:44:27 -07:00
TheRawMeatball
c74285d6fb
Fix for #332
2020-06-06 14:40:46 +03:00
Brian Fiete
bb31854f75
More ACL support
2020-06-05 14:17:25 -07:00
Brian Fiete
abfab35f93
Added ReadProcessMemory
2020-06-05 11:23:39 -07:00
Brian Fiete
b0cc8bee08
Fixed UTF8 error
2020-06-05 10:25:22 -07:00
Brian Fiete
237f85b846
Added 'A' address format specifier
2020-06-05 07:23:46 -07:00
Brian Fiete
bc64ac4d78
Merge pull request #329 from MineGame159/master
...
Added IOpMultiplicable and IOpDividable, fixed Double not implementing IOpAddable and IOpSubtractable
2020-06-05 07:03:20 -07:00
Brian Fiete
66039095eb
Merge pull request #316 from KillaMaaki/fix/int-string-format
...
Hooked up NumberFormatter calls for all int type ToString methods
2020-06-05 07:03:09 -07:00
MineGame159
862c15241a
Added IOpMultiplicable and IOpDividable, fixed Double not implementing IOpAddable and IOpSubtractable
2020-06-05 15:46:31 +02:00
Brian Fiete
88926da1ed
Address added to ToString
2020-06-03 12:05:49 -07:00
Alan Stagner
0e873f535e
Hooked up NumberFormatter calls for all int type ToString methods
2020-05-31 11:55:36 -07:00
Brian Fiete
c101eb19dd
Changed text
2020-05-29 10:10:46 -07:00
Brian Fiete
49a470e154
Extending CopyTo
2020-05-28 09:57:04 -07:00
Brian Fiete
dfde0c6dda
Merge pull request #292 from HydrogenC/patch-1
...
Deprecate [Stdcall]
2020-05-28 09:06:41 -07:00
Brian Fiete
0c6100476d
Merge pull request #303 from pmysl/master
...
Correct int64.MinValue
2020-05-28 09:03:05 -07:00
Brian Fiete
4d949d55ce
Merge pull request #302 from damianday/Array.CopyTo
...
Array CopyTo for spans
2020-05-28 09:02:39 -07:00
Brian Fiete
be6a132fb5
Reflection support for methods and types
2020-05-28 07:36:34 -07:00
Damian Day
d9c277389e
Third time lucky
...
This is my test code.
var sourceArr = scope int[10] (1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
var destArr = scope int[10];
var detSpan = Span<int>(destArr, 0, 5);
sourceArr.CopyTo(detSpan, 2);
// destArr holds 3, 4, 5
2020-05-27 23:33:00 +01:00
Piotr Myśliński
f5bbc4b6c6
Correct int64.MinValue
2020-05-27 20:15:28 +02:00
Damian Day
dd33da0d7c
Update Array.bf
...
Remove length parameter.
2020-05-27 17:26:35 +01:00
Damian Day
8ee09f278f
Array CopyTo for spans
...
CopyTo, allows copying memory from an array to a span.
2020-05-27 15:36:51 +01:00
Damian Day
e9a7625d8b
Array Copy
...
Added copying without specifying offsets.
2020-05-27 14:53:02 +01:00
Brian Fiete
bff1d657cc
Merge pull request #300 from damianday/bool
...
Bool Parse
2020-05-26 13:40:31 -07:00
Brian Fiete
3c4a319250
Merge pull request #299 from damianday/QueueFixes
...
Minor updates to Queue
2020-05-26 13:39:27 -07:00
Brian Fiete
e3739d28de
Merge pull request #298 from RogueMacro/master
...
Fixed Type.GetMethod
2020-05-26 13:38:51 -07:00
Damian Day
3ac6af88a3
Bool Parse
...
Implemented parsing boolean strings.
This implementation does not trim whitespace and nulls and check strings if the string does not match at first like C#.
2020-05-26 20:56:19 +01:00
Damian Day
a0210f1d85
Minor updates to Queue
2020-05-26 20:29:15 +01:00
RogueMacro
6d3ac2052b
Update TypeInstance.bf
2020-05-26 21:05:40 +02:00
Damian Day
d17b016397
IndexOfAny
...
Implemented IndexOfAny for String and StringView.
2020-05-26 20:04:06 +01:00
Brian Fiete
74f3ef4e43
Removed debug line
2020-05-25 15:55:11 -07:00
Piotr Myśliński
81168d631b
Fix formatting of Int32.bf and Int64.bf
2020-05-25 23:58:52 +02:00
Piotr Myśliński
bec7dff380
Fix ToString() for int32.MinValue and int64.MinValue
2020-05-25 23:58:43 +02:00
Brian Fiete
c69150e3bb
Linux font fix
2020-05-25 14:14:04 -07:00
Brian Fiete
c43212c38a
Linux font fix
2020-05-25 13:38:57 -07:00
Brian Fiete
1010e8ac83
Added font failovers for missing fonts
2020-05-25 11:02:09 -07:00
LZMPDev
ad0dab0d4c
Revamp Stdcall
2020-05-25 20:46:28 +08:00
Brian Fiete
33286fb804
Fixed missing length in SV target
2020-05-25 05:37:56 -07:00