https://github.com/nidal-bakir/fp
Functional Programming using Dart language
https://github.com/nidal-bakir/fp
dartlang declarative-programming functional-programming
Last synced: 6 months ago
JSON representation
Functional Programming using Dart language
- Host: GitHub
- URL: https://github.com/nidal-bakir/fp
- Owner: Nidal-Bakir
- License: gpl-3.0
- Created: 2023-09-24T20:33:59.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-03T06:25:28.000Z (about 2 years ago)
- Last Synced: 2025-02-07T18:49:47.905Z (8 months ago)
- Topics: dartlang, declarative-programming, functional-programming
- Language: Dart
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Declarative Programming
## FP
Functional Programming using Dart language
From [Mohamed Hamed Hammad FP playlist](https://www.youtube.com/playlist?list=PLpbZuj8hP-I6F-Zj1Ay8nQ1rMnmFnlK2f)
This is a piece of art : )
```dart
extension FunctionComposition on M Function(I) {
O Function(I) compose(O Function(M) g) => (I x) => g(this(x));
}
```![]()