-
Updated
May 3, 2020 - JavaScript
functional-programming
Here are 5,135 public repositories matching this topic...
-
Updated
Apr 3, 2020
-
Updated
Sep 6, 2020 - JavaScript
-
Updated
Sep 13, 2020 - Scala
-
Updated
Sep 10, 2020 - TypeScript
-
Updated
Sep 9, 2020 - TeX
-
Updated
Feb 25, 2020 - Ruby
-
Updated
Sep 11, 2020 - Swift
看了fish-redux的todoList demo,发现里面连接全局状态的方法是使用visitor
visitor: (String path, Page<Object, dynamic> page) {
/// 只有特定的范围的 Page 才需要建立和 AppStore 的连接关系
/// 满足 Page<T> ,T 是 GlobalBaseState 的子类
if (page.isTypeof<GlobalBaseState>()) {
/// 建立 AppStore 驱动 PageStore 的单向数据连接
/// 1. 参数1 AppStore
/// 2. 参数2 当 AppStore.state 变化时, PageStore.state 该如何变化
Animated List
-
Updated
Sep 5, 2020 - JavaScript
-
Updated
Sep 11, 2020 - Java
-
Updated
Aug 1, 2020 - Shell
-
Updated
Sep 13, 2020 - TypeScript
Show[Throwable]
I just came across the fact that a Show[Throwable]
exists.
- It is not wired up into
import Scalaz._
, one needs toimport scalaz.std.java.throwable._
- It discards the stack trace entirely.
What's going on with this? :D
Is it OK if I fix both of these (for 7.2 and 7.3)?
-
Updated
Jul 9, 2020 - CSS
-
Updated
Sep 4, 2020 - Java
-
Updated
Sep 13, 2020 - Java
-
Updated
Sep 10, 2020 - Shell
-
Updated
Aug 26, 2020 - Haskell
-
Updated
Sep 14, 2020 - C++
-
Updated
Sep 10, 2020 - C#
add microsite?
Really nice project.
Writing in coconut files, you lose all the IDE integrations for Python. For example, I use VSCode and all the intellicode and hints of course doesn't work for cocount.
I am not too familiar but perhaps theres needs to be a separate language server or maybe you could leverage the existing Python integrations. Either way, better IDE integration wo
-
Updated
Oct 20, 2019 - Haskell
-
Updated
Aug 4, 2020 - Kotlin
-
Updated
Jul 20, 2020 - HTML
CE have released their own take on tracing, with following notable changes compared to original ZIO Tracing:
- Instead of parsing lambdas, CE throws exceptions in IO constructors and cleans up stacktraces. That also means there is no regional control of tracing and AFAIK no way to avoid slight overhead even when tracing is completely disabled – but OTOH it may probably work on Scala.js
- Trace
-
Updated
Nov 30, 2019 - Haskell
Improve this page
Add a description, image, and links to the functional-programming topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the functional-programming topic, visit your repo's landing page and select "manage topics."
noImplicitAny
will help with some refactorings (such as ornicar/chessground#145). Even partial progress is useful.Pick one of:
Temporarily set
noImplicitAny
totrue
inui/.../tsconfig.json
.To compile use
yarn run dev
,yarn run dev --watch
oryarn run tsc --noEmit
inui/...
. Fix