Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-03-08Update SLNs and projects to be in sync with configurationsEric St. John
2018-02-28Add ROSpan Equals/CompareTo/IndexOf/Contains string-like APIs with ↵Ahson Khan
StringComparison (#27319) * Add ROSpan Equals/CompareTo/IndexOf/Contains string-like APIs with StringComparison * Respond to recent change AsReadOnlySpan -> AsSpan * Remove the out parameter from IndexOf * Add tests and avoid allocations for StringComparison.Ordinal * Remove duplicate definition of SoftHyphen
2018-02-04Changing Span to return default on null instead of throwing.ahsonkhan
2017-10-24Fix System.Data.Odbc configurations for support package and run ↵Santiago Fernandez Madero
UpdateVSConfigurations (#24752) * Fixed odbc configurations for compat package * Run UpdateVSConfigurations * Remove Default Configurations to help VS... comment from csproj's * Remove from System.Buffers as well
2017-08-29Update VS configurationsEric St. John
2017-03-07Refresh current solutions and project configurationsWes Haggard
2017-02-04Update Solution files to use windows path slashes.Wes Haggard
2017-02-03Sync BuildConfiguration with project PropertyGroupsEric St. John
2017-02-03Update all solution files using solution generation toolWes Haggard
2017-01-18Update project configuration and sln files (#15182)Karthik Rajasekaran
* Add ValidateVSConfigurations * Update project config and sln files.
2017-01-15S.M.Span<T>: Add Clear()/Fill(T value) (#14396)nietras
2016-11-16Portable (and thus slower) version of Span<> (#13562)Atsushi Kanamori
* Rebase to make review readable again. * Remove the type casts from DangerousGetPinnedReference - store object as Pinnable<T> * Removed stable version list. * DangerousCreate gets more Dangerous... * Updated dependency versions *again*. * IsReferenceFree fast-paths for common primitives. * Move exception throwing out of inline code. * Remove Windows-only restriction. * Remove baseline version. * Don't hardcode array header size. * Another dependency version change! What's the matter, don't we have any version numbers you like?? * Version => 4.0.0.0 * Use Unsafe.Add rather than SpanHeloer.Add in this[index] (all this repeated source is annoying - unfortunately, Rosylin at this point at least, insists that "ref" variables be initialized once only at declaration point and doesn't allow the conditional ternary operator on ref types. This makes it hard to manually inline DangerousGetPinnableReference in a nice way...) * ThrowHelper.Throw ==> throw ThrowHelper.Create Allow JIT to recognize the throw path as a no-return path so it can throw it into the cold region. * Revert the specific primitive type checks in IsReferenceFree(). It pessimizes the routine on the desktop CLR. * Fix DangerousGetPinnableReference to be a method to match spec. * PR feedback. Description: "Provide classes" => "Provide types" Add fastpath for specific types in IsReferenceFree Make MeasureArrayAdjustment a PerTypeValues private * More concise operator== Eh... hard to tell with all the noise but it did seems to shave a couple of percentage points off. * Follow Ben's suggested ThrowHelper pattern. * Update ThrowHelper comments based on Ben's feedback. * Remove trailing whitespace. * Dependency bump. Again... * Fix up some tests so the IL is Span-legal. Ah, the fun of writing Span code w/out stack-only enforcement. * Add a reference assembly and some of the plumbing... ...to typeforward on CoreClr. Right now, CoreClr fails 44 out of 55 tests so I believe it's premature to throw the switch just yet. This just gets some of the grunt work out of the way. * Add C#6.0 workaround. After chatting offline, we'll accomodate C# 6.0 for now by having the indexer return "T" rather than "ref T". Some performant code require the "ref T" version so as another stopgap, we'll provide a GetItem() method that returns "ref T". Once the tooling story is in better shape, we'll merge GetItem() and the indexer into a single indexer that returns "ref T". * Dependency update again. This is getting really monotonous.