Tagged Questions
The monomorphism tag has no wiki summary.
4
votes
2answers
729 views
What's the Difference Between Subgraph Isomorphism and Subgraph Monomorphism?
In one of the projects I've worked on, the subject of isomorphism versus monomorphism came up.
A little background: I'm no expert on graph theory and have no formal training in it. But this topic is ...
3
votes
1answer
235 views
Basic Haskell monomorphism/polymorphism question (HList)
I'm a Haskell and a Stackoverflow noob, and here's my
first & probably quite basic Haskell question.
module M where
import Data.HList
data R r a
r1 = undefined :: R a Int
r2 = undefined :: R ...
1
vote
2answers
375 views
Why does F# function return a signature of “val FunctionName: int -> int”?
I was following some examples on F# Wikibook on High Order Functions.
Second code snippet under title, Composition Function has following code snippet.
#light
open System
let compose f g x = f (g ...