Difference between revisions of "Nitpicks"

From HaskellWiki
Jump to navigation Jump to search
(15 intermediate revisions by 4 users not shown)
Line 21: Line 21:
 
* <hask>default</hask> is a useful name for a variable, but it's taken up as a keyword for the rarely used defaulting declaration. DefaultSignatures adds a more useful use though.
 
* <hask>default</hask> is a useful name for a variable, but it's taken up as a keyword for the rarely used defaulting declaration. DefaultSignatures adds a more useful use though.
 
* Allow hyphenated (à la scheme) identifiers like <hask>example-identifier</hask>, which some of us prefer to <hask>uglyCamelCase</hask>.
 
* Allow hyphenated (à la scheme) identifiers like <hask>example-identifier</hask>, which some of us prefer to <hask>uglyCamelCase</hask>.
  +
* Make <hask>let</hask> keyword optional in <hask>do</hask> blocks for visual clarity, unifying the two kinds of variable bindings — pure (<hask>let ... =</hask>) and monadic (<hask><-</hask>), decreasing syntactic noise, decreasing nested code depth. Compare:
  +
{|
  +
|<haskell>
  +
example = do
  +
╎params <- loadParams
  +
let╎request = buildRequest params
  +
& fixRequest
  +
╎response <- remoteCall request
  +
let╎Just theValue = responseValueMay response
  +
╎return theValue
  +
</haskell>
  +
|<haskell>
  +
example = do
  +
╎params <- loadParams
  +
╎request = buildRequest params
  +
& fixRequest
  +
╎response <- remoteCall request
  +
╎Just theValue = responseValueMay response
  +
╎return theValue
  +
</haskell>
  +
|}
  +
: See https://mail.haskell.org/pipermail/haskell-cafe/2012-August/102741.html
  +
* Add "monad extraction" operator (I used a "!" one, because it's present in Idris ). Often you don't care in which order monad values are "extracted", and you just want to use their values in parameters to function-call or <hask>return</hask>. Compare:
  +
:* "do" syntax
  +
<haskell>
  +
do params <- loadParams
  +
time <- getCurrentTime
  +
user <- getCurrentUser
  +
getExampleData params time user
  +
</haskell>
  +
:* monad extraction
  +
<haskell>
  +
getExampleData !loadParams !getCurrentTime !getCurrentUser
  +
</haskell>
  +
:* Applicative lift
  +
<haskell>
  +
bind3 getExampleData loadParams getCurrentTime getCurrentUser
  +
where bind3 f x y z = join (liftA3 f x y z)
  +
</haskell>
  +
: See https://mail.haskell.org/pipermail/haskell-cafe/2014-May/114287.html
  +
  +
== Syntactic-sugar related nitpicks ==
  +
  +
* It is not possible to create non-recursive bindings in do-blocks. Some syntactic sugar, say, an "assignment arrow" <code>foo <-= modify foo</code> which desugars to <code>foo' (modify foo) where foo' foo = ...</code>, would solve this problem, and can be used instead of <code>let</code>. The primary motivation for this is that it is currently not possible to "mutate" bindings in do-blocks, for example - <code>let foo = modify foo</code> would be interpreted as a recursive definition instead. So we have to invent new variable names to refer to the mutated values (suffixing (') being the most common), and since the old binding is still in scope there is no way to ensure that the old value will not be accidentally used, causing bugs. A universal non-recursive <code>let</code> would also solve this problem but it has its own issues, and is a much bigger change to the language. Some relevant discussion here - http://permalink.gmane.org/gmane.comp.lang.haskell.cafe/117846
   
 
== Semantics-related nitpicks ==
 
== Semantics-related nitpicks ==
Line 29: Line 73:
 
* Cutting up <hask>Num</hask>, which is a mess of various operations one may not want to all define on some type; for example <hask>(+)</hask> makes sense for vectors in ℝ³ but <hask>(*)</hask> doesn't. Also, <hask>fromIntegral</hask> is useful for some types where the full complement of numeric operators aren't.
 
* Cutting up <hask>Num</hask>, which is a mess of various operations one may not want to all define on some type; for example <hask>(+)</hask> makes sense for vectors in ℝ³ but <hask>(*)</hask> doesn't. Also, <hask>fromIntegral</hask> is useful for some types where the full complement of numeric operators aren't.
 
* <hask>Data.List.nub</hask> and other "Set" operations should be restricted to <hask>Ord</hask> not <hask>Eq</hask> in order to reduce their complexity. It is very unlikely for anyone to create a datatype that can support <hask>Eq</hask> but not <hask>Ord</hask>. <hask>Data.Set</hask> in the "container" package assumes <hask>Ord</hask> as well.
 
* <hask>Data.List.nub</hask> and other "Set" operations should be restricted to <hask>Ord</hask> not <hask>Eq</hask> in order to reduce their complexity. It is very unlikely for anyone to create a datatype that can support <hask>Eq</hask> but not <hask>Ord</hask>. <hask>Data.Set</hask> in the "container" package assumes <hask>Ord</hask> as well.
  +
* Partial functions like <hask>head</hask> and <hask>tail</hask> in Prelude. The problem is in their partiality.

Revision as of 09:12, 13 September 2015


This page is for people to record nitpicks about the Haskell language.

A "nitpick", in this case, is something that is annoying or could be improved, but is probably not important enough to justify the added complexity of tacking it on as an extension or breaking existing code.

In other words, if we could go back in time and fix it before it happened, we probably would, but now it would probably be too onerous.

Ideally, these nitpicks could help to inform future proposals or compatibility-breaking changes to the language. Even if they may be too onerous to change right now, it's possible that it would make sense to address them at some other time.

If the nitpick has been discussed at length, please post a link to the discussion.

Syntax-related nitpicks

example = do
   params <- loadParams
    letrequest = buildRequest params
            & fixRequest
   response <- remoteCall request
    letJust theValue = responseValueMay response
   return theValue
example = do
   params <- loadParams
   request = buildRequest params
        & fixRequest
   response <- remoteCall request
   Just theValue = responseValueMay response
   return theValue
See https://mail.haskell.org/pipermail/haskell-cafe/2012-August/102741.html
  • Add "monad extraction" operator (I used a "!" one, because it's present in Idris ). Often you don't care in which order monad values are "extracted", and you just want to use their values in parameters to function-call or return. Compare:
  • "do" syntax
do  params <- loadParams
    time <- getCurrentTime
    user <- getCurrentUser
    getExampleData params time user
  • monad extraction
getExampleData !loadParams !getCurrentTime !getCurrentUser
  • Applicative lift
bind3 getExampleData loadParams getCurrentTime getCurrentUser
where bind3 f x y z = join (liftA3 f x y z)
See https://mail.haskell.org/pipermail/haskell-cafe/2014-May/114287.html

Syntactic-sugar related nitpicks

  • It is not possible to create non-recursive bindings in do-blocks. Some syntactic sugar, say, an "assignment arrow" foo <-= modify foo which desugars to foo' (modify foo) where foo' foo = ..., would solve this problem, and can be used instead of let. The primary motivation for this is that it is currently not possible to "mutate" bindings in do-blocks, for example - let foo = modify foo would be interpreted as a recursive definition instead. So we have to invent new variable names to refer to the mutated values (suffixing (') being the most common), and since the old binding is still in scope there is no way to ensure that the old value will not be accidentally used, causing bugs. A universal non-recursive let would also solve this problem but it has its own issues, and is a much bigger change to the language. Some relevant discussion here - http://permalink.gmane.org/gmane.comp.lang.haskell.cafe/117846

Semantics-related nitpicks

Base-related nitpicks