Stories recently tagged with 'functional'

Functional Programming for Everyday .NET Development(msdn.microsoft.com)

submitted by JemmJemm(9604) 2 years, 7 months ago

"In this article I'd like to examine in particular how the new support for functional programming techniques in .NET 3.5 can help you do the following: Make your code more declarative, reduce errors in code and write fewer lines of code for many common tasks." read more...

add a comment |category: |Views: 14

tags: another

Mads Torgersen, you are my hero(mixedsyntax.wordpress.com)

submitted by jasonkikeljasonkikel(15) 3 years, 1 month ago

In seeking how to implement recursive C# lambda expressions, Mads Torgersen and the Lambda Calculus come to the rescue read more...

add a comment |category: |Views: 68

tags: another

Functional .NET - LINQ or Language Integrated Monads?(weblogs.asp.net)

submitted by JemmJemm(9604) 3 years, 7 months ago

"Simply put, a monad, unlike your normal function results, stores function results and side-effect representations. This allows side effects to be propagated through the return values of functions without breaking the pure functional model. This is what makes it so powerful that it is a way to manage side effects. " Great article about monads in C#/LINQ and F#. read more...

add a comment |category: |Views: 35

tags: another

Functional C# Recap(weblogs.asp.net)

submitted by JemmJemm(9604) 3 years, 7 months ago

"Here are some resources that will be helpful in covering functional programming aspects as well as other topics covered." (Link collection) read more...

add a comment |category: |Views: 438

tags: another

F# : absolute power corrupts absolutely, but F# removes side-effects(blog.domaindotnet.com)

submitted by dcarrdcarr(790) 3 years, 7 months ago

Functional programming is so addictive. It reminds me when I could code with no team, no deadline, no broken processes or cultures to navigate. I do hope this becomes a common option for general development or at least C# continues to borg functional ideas… read more...

add a comment |category: |Views: 17

tags: another

Functional C# - Learn from F# and LINQ (codebetter.com)

submitted by dengar007dengar007(3084) 3 years, 11 months ago

We'll take samples from F# and show that some higher order functions already exist in the base class libraries and you can use them today without having to reinvent any wheels. read more...

add a comment |category: |Views: 50

tags: another

Functional C# - Unfolding Lists(codebetter.com)

submitted by cls2degcls2deg(1535) 3 years, 11 months ago

Very nice post on implementing ideas from functional programming with C#. read more...

add a comment |category: |Views: 353

tags: another

Higher Order Function Demo(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 11 months ago

A neat demo showing off a few higher order functions and using them in C#. read more...

add a comment |category: |Views: 16

tags: another

Query Composition using Functional Programming Techniques in C# 3.0(blogs.msdn.com)

submitted by spavkovspavkov(1718) 4 years ago

This stuff is easy. It's also really fun. You don't have to read academic papers to learn about, enjoy, and benefit from functional programming in C# 3.0. There are about half a dozen concepts you need to learn, each one easy. Concepts like just a new way to write a method (that has no name), or a new way to write a static method for a class. Then you put them all together, and the result is more than the sum of the parts. read more...

add a comment |category: |Views: 325

tags: another

Building an F# powered indexing system (part 2)(tryingthisagain.com)

submitted by mrkurtmrkurt(280) 4 years ago

The second development chunk focuses on creating documents to index, and munging them into a format to hand off to an external library. There are examples of calling a .NET library from F#, mutable values, function composition, and several other spiffy sounding things. read more...

add a comment |category: |Views: 53

tags: another

LINQ-to-Console(blog.functionalfun.net)

submitted by samuel_d_jacksamuel_d_jack(415) 4 years ago

Using a LINQ query to sanitise user's input from the console. read more...

add a comment |category: |Views: 5

tags: another

Yet Another Project Euler Series (YAPES)(diditwith.net)

submitted by lenielleniel(504) 4 years ago

For the past several months, I've been using F# to solve at least two Project Euler problems each week. I find this is a great way to sharpen my math skills and my F# skills simultaneously. If you're looking for a way to flex your programming muscles, you really should check out Project Euler. read more...

1 comment |category: |Views: 55

tags: another

New F# Compiler Released(research.microsoft.com)

submitted by dengar007dengar007(3084) 4 years ago

The new version of the F# Compiler was released May 1, 2008. Go download it now. read more...

4 comments |category: |Views: 99

tags: another

I've got 99 Problems But a Glitch Ain't One : Problems 1-10 (F#)(frickinsweet.com)

submitted by JOELROXORJOELROXOR(235) 4 years, 2 months ago

The first milestone: Solutions to Problems 1-10 of Dr. Werner Hett's 99 Problems in F#. read more...

add a comment |category: |Views: 22

tags: another

I've got 99 Problems But a Glitch Ain't One : Problem 7 (F#)(frickinsweet.com)

submitted by dengar007dengar007(3084) 4 years, 2 months ago

Solution to Problem #7 of 99 Problems in F# (Flatten a nested list structure using recursion). read more...

1 comment |category: |Views: 43

tags: another

I've got 99 Problems But a Glitch Ain't One : Problem 4 (F#)(frickinsweet.com)

submitted by dengar007dengar007(3084) 4 years, 3 months ago

Solution to Problem #4 of 99 Problems in F#. Working with lists to obtain the desired outcome. read more...

add a comment |category: |Views: 1

tags: another