Language Server Protocol
This blog briefs the LSP(language server protocol) specification.
This blog briefs the LSP(language server protocol) specification.
Functions are functors is a basic idea in funcitonal programming. However, the (->) r
formats of functions are confusing and misleading, What's worse, affected by imperative language features, there was an misunderstanding about how the original structure is hold by a functor. To be more concrete, this blog talks about the question: why result of fmap (*2) (+100) 1
is 202
, not 102
?
While GOPRIVATE
is setup alrady, when tried to run go install, it reported error that verifying module failed as no such host while dial tcp.
Lawys-Of-Reflection
This article notes ideas after reading go blog laws-of-reflection. This blog presents some whim ideas during reading and check further for them. It's not a duplication for the blog, and if you are not familiar with the topic, read the original blog first.
Why applicative functor could currying a function while calling fmap? What are processes to calculate it?
This is my anwser for the question Applicative functors: why can fmap take a function with more than one argument? in stackoverflow.