-
Updated
Jun 19, 2020 - Java
extension-methods
Here are 179 public repositories matching this topic...
-
Updated
Dec 21, 2019 - C#
-
Updated
Jun 10, 2020 - Kotlin
-
Updated
May 31, 2020 - C#
-
Updated
Jul 26, 2019 - C#
-
Updated
Jun 15, 2020 - Kotlin
-
Updated
May 30, 2020 - C#
-
Updated
Jan 5, 2020 - C#
-
Updated
Jun 20, 2020 - Scala
-
Updated
Mar 14, 2018 - C#
Currently, a seed value is required for foldl which in turn causes aggregate to require a seed value. The functions should be able to be used both with and without a seed value. Additionally, the seed value appears to be misnamed as memo. This should be changed to something more suitable.
Unit tests should be added for these as well. #2 is close to being merged and presumably will have be
-
Updated
Jun 1, 2020 - Kotlin
-
Updated
Jun 6, 2020 - TypeScript
-
Updated
May 3, 2020 - C#
-
Updated
May 19, 2020 - C#
-
Updated
Mar 22, 2017 - Java
-
Updated
Jun 18, 2019 - JavaScript
-
Updated
Mar 16, 2018 - CSS
-
Updated
Jan 24, 2018 - Kotlin
I was talking to somebody today on IRC, who was trying to use autobox and was being confused why none of the code in the synopsis as-is.
I think the synopsis and documentation needs to be more explict in that autobox.pm creates none of the methods, and autobox.pm is explicitly a toolkit for other autoboxing things to use, and that the synopsis is only an example of what could be done once a
-
Updated
Mar 29, 2020 - C#
-
Updated
Feb 29, 2020 - C#
We need to document all the extensions for DateTime Extensions class. The documents need to be added to the following file.
https://github.com/ssswagatss/extension-methods/blob/development/Docs/DateTimeExtensionsDocs.md
Please make sure that you test all your code properly as we don't have tes
-
Updated
Mar 19, 2019 - C#
-
Updated
Apr 4, 2018 - C#
-
Updated
Apr 25, 2020 - C#
-
Updated
Jul 22, 2019 - Kotlin
-
Updated
May 27, 2019
Improve this page
Add a description, image, and links to the extension-methods topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the extension-methods topic, visit your repo's landing page and select "manage topics."


excellent project
just a new example in case someone is looking for it:
rmWorkSheet.Extract<RawMaterial>() // Here we can chain multiple definition for the columns .WithProperty(p => p.Id, "A") .WithProperty(p => p.Name, "B", fnTrimString) .WithProperty(p => p.Code, "C", fnTrimString)fnTrimString is converting, fot this example, input object to string
with
` Func<object, str