All Projects → Anton-Latukha → Fundamental Haskell

Anton-Latukha / Fundamental Haskell

Fundamental Haskell book, to the point terse statements on Haskell, Category theory, and related fields. Encyclopedic pocketbook of meaning. Zen kōan-like meditations of understanding. For quick or memory curve spaced repetition learning.

Programming Languages

haskell
3896 projects

Projects that are alternatives of or similar to Fundamental Haskell

Emacs Document
translate emacs documents to Chinese for convenient reference
Stars: ✭ 1,085 (+1132.95%)
Mutual labels:  emacs, org-mode
Milewski Ctfp Pdf
Bartosz Milewski's 'Category Theory for Programmers' unofficial PDF and LaTeX source
Stars: ✭ 9,037 (+10169.32%)
Mutual labels:  category-theory, functional-programming
.dot Org Files
Dotfiles, Emacs + Org-mode with babel and Literate programming.
Stars: ✭ 57 (-35.23%)
Mutual labels:  emacs, org-mode
Org Evil
Evil extensions for Org-mode.
Stars: ✭ 51 (-42.05%)
Mutual labels:  emacs, org-mode
Imtools
Fast and memory-efficient immutable collections and helper data structures
Stars: ✭ 85 (-3.41%)
Mutual labels:  dictionary, functional-programming
Org Make Toc
Automatic tables of contents for Org files
Stars: ✭ 53 (-39.77%)
Mutual labels:  emacs, org-mode
Org Web
org-mode on the web, built with React, optimized for mobile, synced with Dropbox and Google Drive
Stars: ✭ 1,133 (+1187.5%)
Mutual labels:  emacs, org-mode
Org Treescope.el
Provides a time and priority based sparse tree interaction mode
Stars: ✭ 25 (-71.59%)
Mutual labels:  emacs, org-mode
Emagicians Starter Kit
🐰 My own take on an Emacs Starter Kit, with Secret Alien Org Mode Superpowers. -|-+-|-
Stars: ✭ 85 (-3.41%)
Mutual labels:  emacs, org-mode
Dmacs
Emacs Literate Configuration with borg
Stars: ✭ 74 (-15.91%)
Mutual labels:  emacs, org-mode
Organic
Outliner, organizer and notes management app.
Stars: ✭ 34 (-61.36%)
Mutual labels:  emacs, org-mode
Org Zettelkasten
An opinionated setup for managing large collections of interlinked org files.
Stars: ✭ 77 (-12.5%)
Mutual labels:  emacs, org-mode
Org Reverse Datetree
Reversed date trees for Emacs Org mode
Stars: ✭ 33 (-62.5%)
Mutual labels:  emacs, org-mode
Org Tfl
Transport for London meets Emacs Orgmode
Stars: ✭ 55 (-37.5%)
Mutual labels:  emacs, org-mode
Coldnew Emacs
coldnew's emacs config
Stars: ✭ 32 (-63.64%)
Mutual labels:  emacs, org-mode
Vscode Org Mode
Emacs Org Mode for Visual Studio Code
Stars: ✭ 1,096 (+1145.45%)
Mutual labels:  emacs, org-mode
Fp Core.rs
A library for functional programming in Rust
Stars: ✭ 772 (+777.27%)
Mutual labels:  category-theory, functional-programming
Org Super Agenda
Supercharge your Org daily/weekly agenda by grouping items
Stars: ✭ 829 (+842.05%)
Mutual labels:  emacs, org-mode
Org Sticky Header
Show off-screen Org heading at top of window
Stars: ✭ 68 (-22.73%)
Mutual labels:  emacs, org-mode
Org Kanban
Simple approach to kanban with emacs' org-mode
Stars: ✭ 74 (-15.91%)
Mutual labels:  emacs, org-mode

#+title: Fundamental Haskell #+author: Anton Latukha #+creator: Self-published by Anton Latukha #+description: Fundamental notes on Haskell, Category theory and related fields. #+subtitle: Encyclopedical handbook for learning and understanding fundamentals

#+begin_src text

                    _oo0oo_
                    o88888o
                   88" . "88
                   (| -_- |)
                   0\  =  /0
                 ___/`---'\____
              .'  \|       |//  '.
             /  /|||   :    |||/\ \
            |  _|\||| -:-  |||||   \
           /   | \\    -  ///  |\   \
           |   \_| ''\---/''   |/   |
            \  .-\__  '-'  ___/-.  /
          ___'. .'  /--.--\ `.  .'___
       ."" '<  `.___\_<|>_/___.' >' "".
      | | :  `- \`.;`\ _ /`;.`/ - ` : | |
      \  \ `_.   \_ __\ /__ _/   .-` /  /
  =====`-.____`.___ \_____/___.-`___.-'=====
                    `=---='

#+end_src

Org-mode options for LaTeX

#+startup: latexpreview #+startup: entitiespretty #+options: tags:nil #+options: stat:t #+options: H:10 #+options: num:t #+options: toc:10 #+options: p:nil

#+options: \n:t

#+options: -:t #+options: e:t

#+toc: headlines 10 # Inserts TOC *here

LaTeX Class

#+latex_class: book #+latex_class_options: [a4paper,14pt,oneside]

#+latex_header: \titleclass{\subsubparagraph}{straight}[\subparagraph] % This tried to add class header subsubhparagraph into the dance

#+latex_header: \newcounter{subsubparagraph}

#+latex_header: \renewcommand{\subsubparagraph}{\Alph{subsubparagraph}}

LaTeX to PDF Conversion setup

#+latex_header: \tolerance=1000

Graphics setup

#+latex_header: \usepackage[ocgcolorlinks]{ocgx2} % Make links colorful on view and black on print

#+latex_header: \graphicspath{ {./images/}{./}{/home/pyro/org/haskell/}{/home/pyro/org/haskell/images/} } % Folder prefix to search images in #+latex_header: \usepackage{tikz} #+latex_header: \usepackage{tikz-cd}

Trying to extend numbering and TOC

#+latex_header: \usepackage{enumitem} #+latex_header: \setlistdepth{10} #+latex_header: \setcounter{secnumdepth}{10} #+latex_header: \setcounter{tocdepth}{10} #+latex_header: \renewlist{enumerate}{enumerate}{10} #+latex_header: \newlist{enumerate}{enumerate}{10} #+latex_header: \setlist[enumerate]{label*=\arabic*.} #+latex_header: \setlist[itemize,1]{label=$\bullet$} #+latex_header: \setlist[itemize,2]{label=$\bullet$} #+latex_header: \setlist[itemize,3]{label=$\bullet$} #+latex_header: \setlist[itemize,4]{label=$\bullet$} #+latex_header: \setlist[itemize,5]{label=$\bullet$} #+latex_header: \setlist[itemize,6]{label=$\bullet$} #+latex_header: \setlist[itemize,7]{label=$\bullet$} #+latex_header: \setlist[itemize,8]{label=$\bullet$} #+latex_header: \setlist[itemize,9]{label=$\bullet$} #+latex_header: \setlist[itemize,10]{label=$\bullet$} #+latex_header: \renewlist{itemize}{itemize}{10} #+latex_header: \setlist[enumerate,1]{label=$\alph*.$} #+latex_header: \setlist[enumerate,2]{label=$\alph*.$} #+latex_header: \setlist[enumerate,3]{label=$\alph*.$} #+latex_header: \setlist[enumerate,4]{label=$\alph*.$} #+latex_header: \setlist[enumerate,5]{label=$\alph*.$} #+latex_header: \setlist[enumerate,6]{label=$\alph*.$} #+latex_header: \setlist[enumerate,7]{label=$\alph*.$} #+latex_header: \setlist[enumerate,8]{label=$\alph*.$} #+latex_header: \setlist[enumerate,9]{label=$\alph*.$} #+latex_header: \setlist[enumerate,10]{label=$\alph*.$} #+latex_header: \renewlist{enumerate}{enumerate}{10}

Page layout

#+latex_header: \usepackage{fancyhdr} % Enable fancy page style package. Docs: http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/fancyhdr/fancyhdr.pdf #+latex_header: \setlength{\headheight}{15.2pt} % Vertical size of the header box #+latex_header: \pagestyle{fancy} % Enable fancy page style #+latex_header: \pagestyle{headings,chapters,sections,subsections} % Add complex heading #+latex_header: \setlength\textwidth{455pt} #+latex_header: \setlength\textheight{661pt} % Text height on the page, value was experimentally found by me #+latex_header: \fancyfoot[C]{\thepage} % Footer center #+latex_header: \setlength\footskip{0mm} #+latex_header: \fancyheadoffset{0mm} % Offset for header #+latex_header: \usepackage{siunitx} #+latex_header: \usepackage{geometry} % Package aligns the geometry right, probably required by other page offset packages #+latex_header: \geometry{bottom=28mm} #+latex_header: \newbox\FHline % Calculate the box for the header #+latex_header: \setbox\FHline=\hbox{\hsize=\paperwidth% #+latex_header: \hspace*{0mm}% #+latex_header: \rule{\textwidth}{\headrulewidth}\hspace*{0mm}% #+latex_header: } #+latex_header: \renewcommand\headrule{\vskip-.7\baselineskip\copy\FHline} % Set rule for header line box #+latex_header: \setlength{\parindent}{0mm} % Paragraph first line indentation

Code highlighting

#+latex_header: \usepackage{fancyvrb} % Verbatim LaTeX handler&transformer, minted requires it. #+latex_header: \usepackage{fvextra} % Official extension to fancyvrb, can be used by minted in some cases. #+latex_header: \usepackage{minted} % Python3 Pygments code highlighter, requires permission of LaTeX compiler for external tools #+latex_header: \usemintedstyle{rainbow_dash} % Theme that is most close my setup

#+latex_header: \usepackage{caption}

#+latex_header: \newcommand{\source}1{\caption*{Source: {#1}} }

#+latex_header: \usepackage{mathtools}

Font setup

#+latex_header: \usepackage{fontspec} % Docs: http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/fontspec/fontspec.pdf #+latex_header: \defaultfontfeatures{Ligatures=TeX} % Should be enablead and autoloaded by default for fonts. Additions provided by luaotfload(i.e., LuaTEX only) to emulate TEX behaviour forASCII input of curly quotes and punctuation. 'NoCommon' did not worked #+latex_header: \setmainfont{CMU Serif} % Computer Modern (mod Unicode extended) Serif {Analog Times New Roman} #+latex_header: \setsansfont{CMU Sans Serif} % {Analog Arial} #+latex_header: \setmonofont{CMU Typewriter Text}[Ligatures=ResetAll] % {Analog Consolas} #+latex_header: \newfontfamily\arabicfont[Script=Arabic]{Amiri} % Good compatible Arabic font from creator of XITS #+latex_header: \newfontfamily{\symbolfont}{XITS} % And load XITS by the way #+latex_header: \newcommand{\additional}{{\scriptsize +===}} % Separator from main to additional meaning. #+latex_header: \newcommand{\remember}{\symbolfont{{{\Large ♾}}}} % Remember this infinitely. #+latex_header: \newcommand{\caution}{\symbolfont{{{⚠}}}} % Be aware. #+latex_header: \newcommand{\tricky}{\symbolfont{{{\Large ☡}}}} % Details that can be hard to follow.

#+latex_header: \setmathfont{LatinModernMath-Regular} % Latin Modern Math loaded by default, but let's show its load explicitly

Natural transformation arrow

#+latex_header: \newcommand{\naturalto}{% #+latex_header: \mathrel{\vbox{\offinterlineskip #+latex_header: \mathsurround=0pt #+latex_header: \ialign{\hfil##\hfil\cr #+latex_header: \normalfont\scalebox{1.2}{.}\cr #+latex_header: % \noalign{\kern-.05ex} #+latex_header: $\longrightarrow$\cr} #+latex_header: }}% #+latex_header: }

LuaTeX SVG setup

#+latex_header: \usepackage{iftex} % For detection of engines. LuaTeX SVG pkg requires it. Docs: http://mirrors.ctan.org/macros/latex/contrib/iftex/iftex.pdf #+latex_header: \usepackage{scrbase} % For the definition and handling of options in key-value-syntax. LuaTeX SVG pkg requires it. #+latex_header: \usepackage{pdftexcmds} % Extends LuaTeX with unofficial pdfTeX primitives support. LuaTeX SVG pkg requires it. #+latex_header: \usepackage{shellesc} % Primitives to handle shell escape. LuaTeX SVG pkg requires it. #+latex_header: \usepackage{ifplatform} % Controles the access file model depending on the platform. LuaTeX SVG pkg requires it. #+latex_header: \usepackage{trimspaces} % Remove unwanted spaces in the file paths. LuaTeX SVG pkg requires it. #+latex_header: \usepackage{transparent} % Maybe needed for SVGs created by Inkscape. #+latex_header: \usepackage{svg} % Extends LuaTeX with SVG. Docs: http://mirrors.ctan.org/graphics/svg/doc/svg.pdf

Table packages

#+latex_header: \usepackage{tabularx} % Functions for calculation and fixation of the column width in the table. Docs: http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/required/tools/tabularx.pdf #+latex_header: \usepackage{longtable} % Support breaking long tables spanning several pages. Docs: http://mirrors.ctan.org/macros/latex/required/tools/longtable.pdf #+latex_header: \usepackage{xltabular} % Provides new table invironment 'xltabular', which is a combination of 'tabularx' and 'longtable'. Docs: http://mirrors.ctan.org/macros/latex/contrib/xltabular/xltabular-doc.pdf #+latex_header: \usepackage{tabu} % UNMAINTAINED (creator dissapeared 2011). Finer treatment and sizing of tables. Environments 'tabu', 'longtabu' Docs: http://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/tabu/tabu.pdf #+latex_header: \usepackage{booktabs} % Allows finer typesetting of lines in tables. Docs: http://mirrors.ctan.org/macros/latex/contrib/booktabs/booktabs.pdf #+latex_header: \usepackage{colortbl} #+latex_header: \usepackage[table]{xcolor} % Docs: https://mirror.datacenter.by/pub/mirrors/CTAN/macros/latex/contrib/xcolor/xcolor.pdf

Microtype

#+latex_header: \usepackage{microtype} % A great package that enables auto- and manual typeset niceties and tweaking. Docs: http://mirrors.ctan.org/macros/latex/contrib/microtype/microtype.pdf #+latex_header: \DisableLigatures[>,<,|,=,-,$]{encoding = *, family = *} % Specific ligatures to disable in fonts (just a start characters). Mostly Haskell-specific sumbols.

Language setup

#+latex_header: \usepackage{polyglossia} % It is advisable to activate the languages after all packages have been loaded. Docs: http://mirrors.ctan.org/macros/latex/contrib/polyglossia/polyglossia.pdf #+latex_header: \setdefaultlanguage[variant=us]{english} #+latex_header: \setotherlanguage[variant=ancient]{greek}

#+latex_header: \setotherlanguage[variant=classic]{latin} % 2020-03-14: NOTE: Enabling Lating in Polyglossia v19.04 was going into Haskell source code blocks and breaking on Applicative <*>'s

#+latex_header: \setotherlanguage{arabic} % Especially right-to-left languages must be activated after all packages loaded

#+latex_header: \listfiles % Debugging: lists the package version information into logs

HTML setup

The theme

#+setupfile: ./org-html-themes/setup/theme-readtheorg-local.setup

Enable MathJax

#+html_head: <style type="text/css">div.MathJax_Display{display: inline-block !important; width: auto;}</style>

Enable MathJax TiKz

#+html_head: #+html_head: <script src="http://tikzjax.com/v1/tikzjax.js"></script>

Engine searchable keywords

#+keywords: Haskell,Org-mode,Org-drill,Category theory,Functor,Applicative,Monad,Learning,Terms,Definitions,Theory,Book,Dictionary,Encyclopedia,Handbook,Philosophy,Philosophy of mathematics

Setting headers and text typesetting

#+latex_header: \usepackage[parfill]{parskip} % Add spacer functions for paragraphs and headers. Docs: https://ctan.math.illinois.edu/macros/latex/contrib/parskip/parskip.pdf

#+latex_header: \setlength{\parskip}{1em} % Typeset of paragraph break

#+latex_header: \usepackage{titlesec} % Easy formatting of headers. Docs: http://tug.ctan.org/tex-archive/macros/latex/contrib/titlesec/titlesec.pdf #+latex_header: \titleformat{\paragraph} % Formatting the 'paragraph' #+latex_header: {\normalfont\normalsize\bfseries}{\theparagraph}{1em}{} #+latex_header: \titlespacing*{\paragraph}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} % {add to left margin}{above}{below} #+latex_header: \titleformat{\subparagraph} % Formatting the 'subparagraph' #+latex_header: {\normalfont\normalsize\bfseries}{\thesubparagraph}{1em}{} #+latex_header: \titlespacing*{\subparagraph}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} % {add to left margin}{above}{below} #+latex_header: \titleformat{\subsubparagraph} % Formatting the 'subsubparagraph' #+latex_header: {\normalfont\normalsize\bfseries}{\thesubsubparagraph}{1em}{} #+latex_header: \titlespacing*{\subsubparagraph}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} % {add to left margin}{above}{below} #+latex_header: \titleformat{\subsubsubparagraph} % Formatting the 'subsubsubparagraph' #+latex_header: {\normalfont\normalsize\bfseries}{\thesubsubsubparagraph}{1em}{} #+latex_header: \titlespacing*{\subsubsubparagraph}{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex} % {add to left margin}{above}{below}

  • Introduction

/“Employ your time in improving yourself by other men's writings so that you shall come easily by what others have labored hard for.” (Socrates by Plato)/

Important notes on Haskell, category theory & related fields, terms and recommendations.

Book comes in forms:

  • [[https://blog.latukha.com/haskell-notes][Web book]]
  • [[https://github.com/Anton-Latukha/haskell-notes/raw/master/README.pdf][PDF]]
  • [[https://github.com/Anton-Latukha/haskell-notes/blob/master/README.pdf][Open in web PDF viewer]]
  • [[https://github.com/Anton-Latukha/haskell-notes/raw/master/README.tex][LaTeX]]
  • [[https://github.com/Anton-Latukha/haskell-notes/raw/master/README.org][Source code in Org-mode]]
  • [[https://github.com/Anton-Latukha/haskell-notes][GitHub]]
  • [[https://gitlab.com/Anton.Latukha/haskell-notes][GitLab]]

This book is created using complex Org markup file with a lot of LaTeX and LaTeX formulas. Be aware - GitHub & GitLab only partially parse Org into HTML.

To get the full view:

  • Outline navigation

  • LaTeX formulas:

    ( {\displaystyle\left[{-\frac{\hbar^{2}}{2m}}\nabla^{2}+V(\vec{r},t)\right]\Psi({\vec{r}},t)=i\hbar{\partial\over\partial{t}}\Psi({\vec{r}},t),\quad\sum_{k,j}\left[-{\frac{\hbar^{2}}{\sqrt{a}}}{\frac{\partial}{\partial{q^{k}}}}\left({\sqrt{a}}a^{kj}{\frac{\partial}{\partial{q^{j}}}}\right)+V\right]\Psi+{\frac{\hbar}{i}}{\frac{\partial{\Psi}}{\partial{t}}}=0} )

  • Interlinks: <<>>

, please refere to Web book, PDF, LaTeX, of use Org-mode capable viewer/editor.

Note about the markup: =<<>>= - is the ancor for dynamic linking.

Users of =Emacs= can prettify radio targets to be shown as hyper-links with this =Elisp= snippet:

#+begin_src elisp ;;;; 2019-06-12: NOTE: ;;;; Prettify '<<>>' to be shown as 'Radio_targets', ;;;; when org-descriptive-links set. ;;;; This is improvement of the code from: Tobias&glmorous: ;;;; https://emacs.stackexchange.com/questions/19230/how-to-hide-targets ;;;; There exists library created from the sample: ;;;; https://github.com/talwrii/org-hide-targets (defcustom org-hidden-links-additional-re "\(<<<\)[[:print:]]+?\(>>>\)" "Regular expression that matches strings where the invisible-property of thesub-matches 1 and 2 is set to org-link." :type '(choice (const :tag "Off" nil) regexp) :group 'org-link) (make-variable-buffer-local 'org-hidden-links-additional-re)

(defun org-activate-hidden-links-additional (limit) "Put invisible-property org-link on strings matching `org-hide-links-additional-re'." (if org-hidden-links-additional-re (re-search-forward org-hidden-links-additional-re limit t) (goto-char limit) nil))

(defun org-hidden-links-hook-function () "Add rule for org-activate-hidden-links-additional' toorg-font-lock-extra-keywords'. You can include this function in `org-font-lock-set-keywords-hook'." (add-to-list 'org-font-lock-extra-keywords '(org-activate-hidden-links-additional (1 '(face org-target invisible org-link)) (2 '(face org-target invisible org-link)))))

(add-hook 'org-font-lock-set-keywords-hook #'org-hidden-links-hook-function) #+end_src

=SCHT:= and metadata in =:properties:= - of my =org-drill= practices, please just run =org-drill-strip-all-data=.

  • Contents :TOC:noexport: :PROPERTIES: :ID: 5e228850-1b4f-49a7-bc88-faf6f518885d :END:
  • [[#introduction][Introduction]]
  • [[#definitions][Definitions]]
    • [[#algebra][<<>>]]
      • [[#][/*/]]
      • [[#algebraic][<<>>]]
      • [[#algebraic-structure][<<>>]]
        • [[#-1][/*/]]
        • [[#fundamental-theorem-of-algebra][<<>>]]
        • [[#magma][<<>>]]
          • [[#semigroup][<<>>]]
            • [[#-2][/*/]]
            • [[#monoid][<<>>]]
              • [[#-3][/*/]]
              • [[#monoid-properties][<<>>]]
                • [[#monoid-left-identity-property][<<>>]]
                • [[#monoid-right-identity-property][<<>>]]
                • [[#monoid-associativity-property][<<>>]]
              • [[#commutative-monoid][<<>>]]
                • [[#-4][/*/]]
              • [[#group][<<>>]]
                • [[#-5][/*/]]
                • [[#commutative-group][<<>>]]
                  • [[#-6][/*/]]
                  • [[#ring][<<>>]]
                    • [[#-7][/*/]]
      • [[#modular-arithmetic][<<>>]]
        • [[#-8][/*/]]
        • [[#modulus][<<>>]]
          • [[#-9][/*/]]
    • [[#category-theory][<<>>]]
      • [[#-10][/*/]]
      • [[#abelian-category][<<>>]]
        • [[#-11][/*/]]
      • [[#composition][<<>>]]
        • [[#-12][/*/]]
      • [[#endofunctor-category][<<>>]]
      • [[#functor][<<>>]]
        • [[#-13][/*/]]
        • [[#power-set-functor][<<>>]]
          • [[#-14][/*/]]
          • [[#power-set-functor-properties][<<>>]]
            • [[#-15][/*/]]
            • [[#power-set-functor-identity-property][<<>>]]
            • [[#power-set-functor-composition-property][<<>>]]
          • [[#lift][<<>>]]
            • [[#-16][/*/]]
          • [[#power-set-functor-is-a-free-monad][<<>>]]
        • [[#forgetful-functor][<<>>]]
          • [[#-17][/*/]]
        • [[#identity-functor][<<>>]]
        • [[#endofunctor][<<>>]]
          • [[#-18][/*/]]
        • [[#applicative-functor][<<>>]]
          • [[#-19][/*/]]
          • [[#applicative-property][<<>>]]
          • [[#-20][/*/]]
            • [[#applicative-identity-property][<<>>]]
            • [[#applicative-composition-property][<<>>]]
            • [[#applicative-homomorphism-property][<<>>]]
            • [[#applicative-interchange-property][<<>>]]
          • [[#applicative-function][<<>>]]
            • [[#lifta][<<<liftA*>>>]]
              • [[#lifta-1][<<>>]]
              • [[#lifta2][<<>>]]
              • [[#lifta2-][<<<liftA2 (<*>)>>>]]
              • [[#lifta2-lifta2-][liftA2 (liftA2 (<*>))]]
              • [[#lifta3][<<>>]]
            • [[#conditional-applicative-computations][Conditional applicative computations]]
          • [[#special-applicatives][<<>>]]
            • [[#identity-applicative][<<>>]]
            • [[#constant-applicative][<<>>]]
            • [[#maybe-applicative][<<>>]]
            • [[#either-applicative][<<>>]]
            • [[#validation-applicative][<<>>]]
          • [[#monad][<<>>]]
            • [[#-21][/*/]]
            • [[#monad-property][<<>>]]
              • [[#-22][/*/]]
              • [[#monad-left-identity-property][<<>>]]
              • [[#monad-right-identity-property][<<>>]]
              • [[#monad-associativity-property][<<>>]]
            • [[#monad-type-class][<<>>]]
              • [[#monadplus-type-class][<<>>]]
                • [[#-23][/*/]]
            • [[#functor---applicative---monad-progression][Functor -> Applicative -> Monad progression]]
            • [[#monad-function][<<>>]]
              • [[#return-function][<<>>]]
              • [[#join-function][<<>>]]
                • [[#-24][/*/]]
                • [[#join--fmap--][join . fmap == (=<<)]]
              • [[#bind-function][<<>>]]
                • [[#-25][/*/]]
              • [[#sequencing-operator---equiv--][<<>> =(>> ) \equiv ( *>)=:]]
              • [[#monadic-versions-of-list-functions][Monadic versions of list functions]]
              • [[#liftm][<<<liftM*>>>]]
                • [[#liftm-1][<<>>]]
                • [[#liftm2][<<>>]]
            • [[#comonad][<<>>]]
            • [[#kleisli-arrow][<<>>]]
              • [[#-26][/*/]]
            • [[#kleisli-composition][<<>>]]
            • [[#kleisli-category][<<>>]]
            • [[#special-monad][<<>>]]
              • [[#identity-monad][<<>>]]
              • [[#maybe-monad][<<>>]]
              • [[#either-monad][<<>>]]
              • [[#error-monad][<<>>]]
              • [[#list-monad][<<>>]]
                • [[#-27][/*/]]
              • [[#reader-monad][<<>>]]
              • [[#writer-monad][<<>>]]
              • [[#state-monad][<<>>]]
            • [[#monad-transformer][<<>>]]
              • [[#maybet][<<>>]]
              • [[#eithert][<<>>]]
                • [[#-28][/*/]]
              • [[#readert][<<>>]]
              • [[#monadtrans-type-class][<<>> type class]]
                • [[#monadio-type-class][<<>> type class]]
                  • [[#-29][/*/]]
          • [[#alternative-type-class][<<>>]]
            • [[#-30][/*/]]
        • [[#monoidal-functor][<<>>]]
        • [[#-31][=$>=]]
          • [[#-32][/*/]]
        • [[#multifunctor][<<>>]]
          • [[#-33][/*/]]
      • [[#hask-category][<<>>]]
        • [[#-34][/*/]]
      • [[#morphism][<<>>]]
        • [[#-35][/*/]]
        • [[#homomorphism][<<>>]]
          • [[#-36][/*/]]
        • [[#identity-morphism][<<>>]]
          • [[#identity][<<>>]]
            • [[#two-sided-identity-of-a-predicate][<<>>]]
            • [[#left-identity-of-a-predicate][<<>>]]
            • [[#right-identity-of-a-predicate][<<>>]]
          • [[#identity-function][<<>>]]
        • [[#monomorphism][<<>>]]
          • [[#-37][/*/]]
        • [[#epimorphism][<<>>]]
          • [[#-38][/*/]]
        • [[#isomorphism][<<>>]]
          • [[#-39][/*/]]
          • [[#lax][<<>>]]
        • [[#endomorphism][<<>>]]
          • [[#automorphism][<<>>]]
            • [[#-40][/*/]]
          • [[#-41][/*/]]
        • [[#catamorphism][<<>>]]
          • [[#-42][/*/]]
          • [[#catamorphism-property][<<>>]]
            • [[#hylomorphism][<<>>]]
              • [[#-43][/*/]]
          • [[#anamorphism][<<>>]]
            • [[#-44][/*/]]
        • [[#kernel][<<>>]]
          • [[#kernel-homomorphism][<<>>]]
      • [[#set-category][<<>>]]
      • [[#natural-transformation][<<>>]]
        • [[#-45][/*/]]
        • [[#natural-transformation-component][<<>>]]
          • [[#-46][/*/]]
        • [[#natural-transformation-in-haskell][<<>>]]
        • [[#cat-category][<<>>]]
          • [[#-47][/*/]]
          • [[#bicategory][Bicategory]]
      • [[#category-dual][<<>>]] - [[#-48][/*/]]
        • [[#coalgebra][<<>>]]
      • [[#thin-category][<<>>]]
        • [[#-49][/*/]]
      • [[#commuting-diagram][<<>>]]
        • [[#-50][/*/]]
      • [[#universal-construction][<<>>]]
        • [[#-51][/*/]]
      • [[#product][<<>>]]
        • [[#-52][/*/]]
      • [[#coproduct][<<>>]]
        • [[#-53][/*/]]
      • [[#free-object][<<>>]]
      • [[#internal-category][<<>>]]
      • [[#hom-set][<<>>]]
        • [[#-54][/*/]]
        • [[#hom-functor][<<>>]]
        • [[#exponential-object][<<>>]]
          • [[#-55][/*/]]
          • [[#enriched-category][<<>>]]
            • [[#-56][/*/]]
      • [[#mag-category][<<>>]]
        • [[#-57][/*/]]
    • [[#data-type][<<>>]]
      • [[#-58][/*/]]
      • [[#actual-type][<<>>]]
      • [[#algebraic-data-type][<<>>]]
        • [[#-59][/*/]]
      • [[#cardinality][<<>>]]
        • [[#-60][/*/]]
      • [[#data-constant][<<>>]]
      • [[#data-constructor][<<>>]]
      • [[#data-declaration][<<>>]]
      • [[#dependent-type][<<>>]]
        • [[#-61][/*/]]
      • [[#gen-type][<<>>]]
      • [[#higher-kinded-data-type][<<>>]]
        • [[#-62][/*/]]
      • [[#newtype-declaration][<<>>]]
      • [[#principal-type][<<>>]]
      • [[#product-data-type][<<>>]]
        • [[#-63][/*/]]
        • [[#sequence][<<>>]]
          • [[#-64][/*/]]
          • [[#list][<<>>]]
      • [[#proxy-type][<<>>]]
      • [[#static-typing][<<>>]]
      • [[#structural-type][<<>>]]
        • [[#-65][/*/]]
      • [[#structural-type-system][<<>>]]
        • [[#-66][/*/]]
      • [[#sum-data-type][<<>>]]
      • [[#type-alias][<<>>]]
      • [[#type-class][<<>>]]
        • [[#-67][/*/]]
        • [[#arbitrary-type-class][<<>>]]
          • [[#arbitrary-function][<<>>]]
        • [[#coarbitrary-type-class][<<>>]]
          • [[#-68][/*/]]
        • [[#typeable-type-class][<<>>]]
          • [[#-69][/*/]]
        • [[#type-class-inheritance][<<>>]]
        • [[#derived-instance][<<>>]]
          • [[#-70][/*/]]
      • [[#type-constant][<<>>]]
      • [[#type-constructor][<<>>]]
      • [[#type-declaration][<<>>]]
      • [[#typed-hole][<<>>]]
        • [[#-71][/*/]]
      • [[#type-inference][<<>>]]
        • [[#-72][/*/]]
      • [[#type-class-instance][<<>>]]
      • [[#type-rank][<<>>]]
        • [[#-73][/*/]]
      • [[#type-variable][<<>>]]
      • [[#unlifted-type][<<>>]]
        • [[#-74][/*/]]
      • [[#linear-type][<<>>]]
        • [[#-75][/*/]]
      • [[#nonempty-list-data-type][<<>>]]
      • [[#session-type][<<>>]]
      • [[#binary-tree][<<>>]]
      • [[#bottom-value][<<>>]]
        • [[#-76][/*/]]
      • [[#bound][<<>>]]
        • [[#-77][/*/]]
      • [[#constructor][<<>>]]
        • [[#-78][/*/]]
      • [[#context][<<>>]]
        • [[#-79][/*/]]
      • [[#inhabit][<<>>]]
      • [[#maybe][<<>>]]
        • [[#-80][/*/]]
      • [[#expected-type][<<>>]]
      • [[#adt][<<>>]]
      • [[#concrete-type][<<>>]]
      • [[#type-punning][<<>>]]
      • [[#kind][<<>>]]
        • [[#-81][/*/]]
      • [[#io][<<>>]]
    • [[#expression][<<>>]]
      • [[#-82][/*/]]
      • [[#closed-form-expression][<<>>]]
      • [[#rhs][<<>>]]
      • [[#lhs][<<>>]]
      • [[#redex][<<>>]]
      • [[#concatenate][<<>>]]
      • [[#alpha-equivalence][<<>>]]
      • [[#ground-expression][<<>>]]
        • [[#-83][/*/]]
      • [[#variable][<<>>]]
        • [[#-84][/*/]]
      • [[#phrase][<<>>]]
    • [[#function][<<>>]]
      • [[#-85][/*/]]
      • [[#arity][<<>>]]
      • [[#bijection][<<>>]]
        • [[#-86][/*/]]
      • [[#combinator][<<>>]]
        • [[#psi-combinator][<<<\Psi-combinator>>>]]
          • [[#-87][/*/]]
      • [[#function-application][<<>>]]
        • [[#-88][/*/]]
      • [[#function-body][<<>>]]
      • [[#function-composition][<<>>]]
        • [[#-89][/*/]]
      • [[#function-head][<<>>]]
      • [[#function-range][<<>>]]
      • [[#higher-order-function][<<>>]]
        • [[#-90][/*/]]
        • [[#fold][<<>>]]
      • [[#injection][<<>>]]
        • [[#-91][/*/]]
      • [[#partial-function][<<>>]]
      • [[#purity][<<>>]]
        • [[#-92][/*/]]
      • [[#pure-function][<<>>]]
      • [[#sectioning][<<>>]]
      • [[#surjection][<<>>]]
        • [[#-93][/*/]]
      • [[#unsafe-function][<<>>]]
        • [[#-94][/*/]]
      • [[#variadic][<<>>]]
      • [[#domain][<<>>]]
      • [[#codomain][<<>>]]
      • [[#open-formula][<<>>]]
      • [[#recursion][<<>>]]
        • [[#-95][/*/]]
        • [[#base-case][<<>>]]
        • [[#tail-recursion][<<>>]]
        • [[#polymorphic-recursion][<<>>]]
          • [[#-96][/*/]]
      • [[#free-variable][<<>>]]
      • [[#closure][<<>>]]
        • [[#-97][/*/]]
      • [[#parameter][<<>>]]
        • [[#-98][/*/]]
      • [[#partial-application][<<>>]]
        • [[#-99][/*/]]
      • [[#well-formed-formula][<<>>]]
        • [[#-100][/*/]]
    • [[#homotopy][<<>>]]
      • [[#-101][/*/]]
    • [[#lambda-calculus][<<>>]]
      • [[#-102][/*/]]
      • [[#lambda-cube][<<>>]]
        • [[#-103][/*/]]
      • [[#lambda-function][<<>>]]
        • [[#-104][/*/]]
        • [[#anonymous-lambda-function][<<>>]]
          • [[#-105][/*/]]
        • [[#uncurry][<<>>]]
      • [[#beta-reduction][<<<\beta-reduction>>>]]
        • [[#-106][/*/]]
        • [[#beta-normal-form][<<<\beta-normal form>>>]]
          • [[#-107][/*/]]
      • [[#calculus-of-constructions][<<>>]]
        • [[#-108][/*/]]
      • [[#curryhoward-correspondence][<<<Curry–Howard correspondence>>>]]
        • [[#-109][/*/]]
      • [[#currying][<<>>]]
        • [[#-110][/*/]]
      • [[#hindleymilner-type-system][<<<Hindley–Milner type system>>>]]
        • [[#-111][/*/]]
      • [[#reduction][<<>>]]
        • [[#-112][/*/]]
      • [[#beta-eta-normal-form][<<<\beta-\eta normal form>>>]]
        • [[#-113][/*/]]
      • [[#eta-abstraction][<<<\eta-abstraction>>>]]
        • [[#-114][/*/]]
      • [[#lambda-expression][<<>>]]
    • [[#operation][<<>>]]
      • [[#constant][<<>>]]
      • [[#binary-operation][<<>>]]
        • [[#-115][/*/]]
      • [[#operator][<<>>]]
        • [[#shift-operator][<<>>]]
          • [[#-116][/*/]]
        • [[#differential-operator][<<>>]]
          • [[#-117][/*/]]
      • [[#infix][<<>>]]
      • [[#fixity][<<>>]]
        • [[#-118][/*/]]
      • [[#zero][<<>>]]
      • [[#bind][<<>>]]
        • [[#-119][/*/]]
      • [[#declaration][<<>>]]
      • [[#dispatch][<<>>]]
      • [[#evaluation][<<>>]]
    • [[#permutation][<<>>]]
    • [[#point-free][<<>>]]
      • [[#-120][/*/]]
      • [[#blackbird][<<>>]]
        • [[#-121][/*/]]
      • [[#swing][<<>>]]
      • [[#squish][<<>>]]
    • [[#polymorphism][<<>>]]
      • [[#-122][/*/]]
      • [[#levity-polymorphism][<<>>]]
      • [[#parametric-polymorphism][<<>>]]
        • [[#rank-1-polymorphism][<<>>]]
          • [[#-123][/*/]]
        • [[#let-bound-polymorphism][<<>>]]
        • [[#constrained-polymorphism][<<>>]]
          • [[#ad-hoc-polymorphism][<<>>]]
            • [[#-124][/*/]]
        • [[#impredicative-polymorphism][<<>>]]
          • [[#-125][/*/]]
        • [[#higher-rank-polymorphism][<<>>]]
          • [[#-126][/*/]]
      • [[#subtype-polymorphism][<<>>]]
      • [[#row-polymorphism][<<>>]]
      • [[#kind-polymorphism][<<>>]]
      • [[#linearity-polymorphism][<<>>]]
    • [[#compositionality][<<>>]]
      • [[#-127][/*/]]
    • [[#referential-transparency][<<>>]]
      • [[#-128][/*/]]
    • [[#semantics][<<>>]]
      • [[#operational-semantics][<<>>]]
        • [[#argument][<<>>]]
          • [[#argument-of-a-function][<<>>]]
            • [[#-129][/*/]]
          • [[#first-class][<<>>]]
        • [[#relation][<<>>]]
          • [[#-130][/*/]]
        • [[#context-free-grammar][<<>>]]
          • [[#-131][/*/]]
        • [[#constructive-proof][Constructive proof]]
      • [[#denotational-semantics][<<>>]]
        • [[#abstraction][<<>>]]
          • [[#-132][/*/]]
          • [[#leaky-abstraction][<<>>]]
            • [[#-133][/*/]]
          • [[#object][<<>>]]
            • [[#-134][/*/]]
            • [[#arrow][<<>>]]
              • [[#-135][/*/]]
            • [[#terminal-object][<<>>]]
            • [[#initial-object][<<>>]]
            • [[#value][Value]]
              • [[#-136][/*/]]
            • [[#tensor][<<>>]]
              • [[#-137][/*/]]
        • [[#ambigram][<<>>]]
        • [[#binary][<<>>]]
        • [[#arbitrary][<<>>]]
        • [[#refutable][<<>>]]
        • [[#irrefutable][<<>>]]
        • [[#superclass][<<>>]]
        • [[#unit][<<>>]]
        • [[#nullary][<<>>]]
        • [[#syntax-tree][<<>>]]
          • [[#abstract-syntax-tree][<<>>]]
            • [[#-138][/*/]]
          • [[#concrete-syntax-tree][<<>>]]
            • [[#-139][/*/]]
        • [[#stream][<<>>]]
        • [[#linear][<<>>]]
          • [[#-140][/*/]]
        • [[#predicative][<<>>]]
        • [[#quantifier][<<>>]]
          • [[#-141][/*/]]
          • [[#forall-quantifier][<<>>]]
            • [[#-142][/*/]]
        • [[#idiom][<<>>]]
          • [[#-143][/*/]]
        • [[#impredicative][<<>>]]
      • [[#axiomatic-semantics][<<>>]]
        • [[#property][<<>>]]
          • [[#-144][/*/]]
          • [[#associativity][<<>>]]
            • [[#-145][/*/]]
            • [[#left-associativity][<<>>]]
              • [[#-146][/*/]]
            • [[#right-associativity][<<>>]]
              • [[#-147][/*/]]
            • [[#non-associativity][<<>>]]
              • [[#-148][/*/]]
          • [[#basis][<<>>]]
            • [[#contravariant][<<>>]]
              • [[#-149][/*/]]
            • [[#covariant][<<>>]]
              • [[#-150][/*/]]
          • [[#commutativity][<<>>]]
            • [[#-151][/*/]]
          • [[#idempotence][<<>>]]
            • [[#-152][/*/]]
          • [[#distributivity][<<>>]]
            • [[#-153][/*/]]
        • [[#effect][<<>>]]
        • [[#bisimulation][<<>>]]
          • [[#-154][/*/]]
        • [[#primitive-operation][<<>>]]
          • [[#-155][/*/]]
      • [[#content-word][<<>>]]
      • [[#ancient-greek-and-latin-prefixes][Ancient Greek and Latin prefixes]]
        • [[#-156][/*/]]
    • [[#set][<<>>]]
      • [[#-157][/*/]]
      • [[#axiom-of-choice][<<>>]]
      • [[#closed-set][<<>>]]
      • [[#power-set][<<>>]]
      • [[#singleton][<<>>]]
      • [[#russells-paradox][<<<Russell's paradox>>>]]
      • [[#cartesian-product][<<>>]]
        • [[#pullback][<<>>]]
          • [[#-158][/*/]]
      • [[#zermelofraenkel-set-theory][Zermelo–Fraenkel set theory]]
        • [[#-159][/*/]]
    • [[#testing][<<>>]]
      • [[#property-testing][<<>>]]
        • [[#function-property][<<>>]]
        • [[#property-testing-type][<<>>]]
        • [[#generator][<<>>]]
          • [[#-160][/*/]]
          • [[#custom-generator][Custom generator]]
        • [[#reusing-test-code][<<>>]]
          • [[#test-commutative-property][<<>>]]
          • [[#test-symmetry-property][<<>>]]
          • [[#test-equivalence-property][<<>>]]
          • [[#test-inverse-property][<<>>]]
        • [[#quickcheck][<<>>]]
          • [[#manual-automation-with-quickcheck-properties][Manual automation with QuickCheck properties]]
      • [[#write-tests-algorithm][Write tests algorithm]]
      • [[#shrinking][<<>>]]
    • [[#logic][Logic]]
      • [[#proposition][<<>>]]
        • [[#-161][/*/]]
        • [[#atomic-proposition][<<>>]]
          • [[#-162][/*/]]
        • [[#compound-proposition][<<>>]]
          • [[#-163][/*/]]
        • [[#propositional-logic][<<>>]]
          • [[#-164][/*/]]
          • [[#first-order-logic][<<>>]]
            • [[#-165][/*/]]
            • [[#second-order-logic][<<>>]]
              • [[#higher-order-logic][<<>>]]
      • [[#logical-connective][<<>>]]
        • [[#-166][/*/]]
        • [[#conjunction][<<>>]]
        • [[#disjunction][<<>>]]
      • [[#predicate][<<>>]]
      • [[#statement][<<>>]]
        • [[#-167][/*/]]
        • [[#antecedent][<<>>]]
        • [[#consequent][<<>>]]
        • [[#vacuous][<<>>]]
      • [[#iff][<<>>]]
    • [[#haskell-structure][Haskell structure]]
      • [[#-168][/*/]]
      • [[#pattern-match][<<>>]]
        • [[#as-pattern][<<>>]]
          • [[#-169][/*/]]
        • [[#wild-card][<<>>]]
          • [[#-170][/*/]]
        • [[#case][<<>>]]
        • [[#guard][<<>>]]
          • [[#-171][/*/]]
        • [[#pattern-guard][<<>>]]
          • [[#-172][/*/]]
        • [[#lazy-pattern][<<>>]]
          • [[#-173][/*/]]
        • [[#pattern-binding][<<>>]]
          • [[#-174][/*/]]
      • [[#smart-constructor][<<>>]]
      • [[#level-of-code][<<>>]]
        • [[#-175][/*/]]
        • [[#type-level][<<>>]]
          • [[#type-level-declaration][<<>>]]
            • [[#-176][/*/]]
          • [[#type-check][<<>>]]
            • [[#-177][/*/]]
            • [[#complete-user-specific-kind-signature][<<>>]]
              • [[#-178][/*/]]
        • [[#term-level][<<>>]]
        • [[#compile-level][<<>>]]
          • [[#-179][/*/]]
        • [[#runtime-level][<<>>]]
        • [[#kind-level][<<>>]]
          • [[#kind-check][<<>>]]
            • [[#-180][/*/]]
      • [[#orphan-instance][<<>>]]
      • [[#undefined][<<>>]]
      • [[#hierarchical-module-name][<<>>]]
        • [[#-181][/*/]]
      • [[#reserved-word][<<>>]]
        • [[#-182][/*/]]
        • [[#import][<<>>]]
        • [[#let][<<>>]]
          • [[#-183][/*/]]
        • [[#where][<<>>]]
          • [[#-184][/*/]]
      • [[#haskell-language-report][<<>>]]
        • [[#-185][/*/]]
      • [[#haskell][<<<Haskell'>>>]]
        • [[#-186][/*/]]
      • [[#lense][<<>>]]
      • [[#pragma][<<>>]]
        • [[#language-pragma][<<>>]]
          • [[#language-option][<<>>]]
            • [[#-187][/*/]]
            • [[#useful-by-default][Useful by default]]
            • [[#allowambiguoustypes][<<>>]]
            • [[#applicativedo][<<>>]]
            • [[#constrainedclassmethods][<<>>]]
            • [[#cpp][<<>>]]
            • [[#derivefunctor][<<>>]]
            • [[#explicitforall][<<>>]]
            • [[#flexiblecontexts][<<>>]]
            • [[#flexibleinstances][<<>>]]
            • [[#generalizednewtypederiving][<<>>]]
            • [[#implicitparams][<<>>]]
            • [[#lambdacase][<<>>]]
            • [[#multiparamtypeclasses][<<>>]]
            • [[#multiwayif][<<>>]]
            • [[#overloadedstrings][<<>>]]
            • [[#partialtypesignatures][<<>>]]
            • [[#rankntypes][<<>>]]
            • [[#scopedtypevariables][<<>>]]
            • [[#tuplesections][<<>>]]
            • [[#typeapplications][<<>>]]
            • [[#typesynonyminstances][<<>>]]
            • [[#undecidableinstances][<<>>]]
            • [[#viewpatterns][<<>>]]
            • [[#datatypecontexts][<<>>]]
            • [[#standalonekindsignatures][<<>>]]
              • [[#-188][/*/]]
            • [[#partialtypesignatures-1][<<>>]]
            • [[#typeoperators][<<>>]]
          • [[#how-to-make-a-ghc-language-extension][How to make a GHC LANGUAGE extension]]
    • [[#computer-science][Computer science]]
      • [[#guerrilla-patch][<<>>]]
        • [[#monkey-patch][<<>>]]
      • [[#interface][<<>>]]
      • [[#module][<<>>]]
      • [[#scope][<<>>]]
        • [[#dynamic-scope][<<>>]]
        • [[#lexical-scope][<<>>]]
          • [[#-189][/*/]]
        • [[#local-scope][<<>>]]
          • [[#-190][/*/]]
      • [[#shadowing][<<>>]]
      • [[#syntatic-sugar][<<>>]]
      • [[#system-f][<<>>]]
        • [[#-191][/*/]]
      • [[#tail-call][<<>>]]
      • [[#thunk][<<>>]]
      • [[#application-memory][<<>>]]
      • [[#turing-machine][<<>>]]
        • [[#turing-complete][<<>>]]
          • [[#-192][/*/]]
      • [[#repl][<<>>]]
      • [[#domain-specific-language][<<>>]]
        • [[#-193][/*/]]
        • [[#embedded-domain-specific-language][<<>>]]
          • [[#-194][/*/]]
      • [[#data-structure][<<>>]]
        • [[#cons-cell][<<>>]]
        • [[#construct][<<>>]]
          • [[#-195][/*/]]
        • [[#leaf][<<>>]]
        • [[#node][<<>>]]
        • [[#spine][<<>>]]
    • [[#graph-theory][<<>>]]
      • [[#successor][<<>>]]
        • [[#direct-successor][<<>>]]
      • [[#predecessor][<<>>]]
        • [[#direct-predecessor][<<>>]]
      • [[#degree][<<>>]]
        • [[#indegree][<<>>]]
        • [[#outdegree][<<>>]]
      • [[#adjacency-matrix][<<>>]]
        • [[#instancesigs][<<>>]]
      • [[#strongly-connected][<<>>]]
        • [[#-196][/*/]]
        • [[#strongly-connected-component][<<>>]]
          • [[#-197][/*/]]
    • [[#tagless-final][<<>>]]
    • [[#prefix-notation][<<>>]]
      • [[#-198][/*/]]
      • [[#postfix-notation][<<>>]]
      • [[#-199][/*/]]
  • [[#give-definitions][Give definitions]]
    • [[#identity-type][<<>>]]
    • [[#constant-type][<<>>]]
    • [[#gen][<<>>]]
    • [[#tensorial-strength][<<>>]]
    • [[#strong-monad][<<>>]]
    • [[#weak-head-normal-form][<<>>]]
      • [[#-200][/*/]]
    • [[#function-image][<<>>]]
      • [[#-201][/*/]]
    • [[#invertible][<<>>]]
    • [[#invertibility][<<>>]]
    • [[#define-language-pragma-options][<<>>]]
      • [[#existentialquantification][<<>>]]
      • [[#gadts][<<>>]]
      • [[#-202][/*/]]
      • [[#generalizednewtypeclasses][<<>>]]
      • [[#funcitonaldependencies][<<>>]]
    • [[#ghc-check-keys][<<>>]]
      • [[#-wno-partial-type-signatures][<<<-Wno-partial-type-signatures>>>]]
    • [[#generalised-algebraic-data-types][<<>>]]
      • [[#-203][/*/]]
    • [[#order-theory][<<>>]]
      • [[#domain-theory][<<>>]]
      • [[#lattice][<<>>]]
      • [[#order][<<>>]]
        • [[#preorder][<<>>]]
          • [[#-204][/*/]]
          • [[#total-preorder][<<>>]]
        • [[#partial-order][<<>>]]
          • [[#-205][/*/]]
        • [[#total-order][<<>>]]
        • [[#chain][<<>>]]
    • [[#universal-algebra][<<>>]]
    • [[#relation-1][<<>>]]
      • [[#reflexivity][<<>>]]
        • [[#-206][/*/]]
      • [[#irreflexivity][<<>>]]
        • [[#-207][/*/]]
      • [[#transitivity][<<>>]]
        • [[#-208][/*/]]
      • [[#symmetry][<<>>]]
        • [[#-209][/*/]]
      • [[#equivalence][<<>>]]
        • [[#-210][/*/]]
      • [[#antisymmetry][<<>>]]
        • [[#-211][/*/]]
      • [[#asymmetry][<<>>]]
        • [[#-212][/*/]]
    • [[#cryptomorphism][<<>>]]
      • [[#-213][/*/]]
    • [[#lexically-scoped-type-variables][<<>>]]
    • [[#abstract-data-type][<<>>]]
      • [[#-214][/*/]]
    • [[#functional-dependencies][<<>>]]
    • [[#monolocalbinds][<<>>]]
    • [[#kindsignatures][<<>>]]
    • [[#explicitnamespaces][<<>>]]
    • [[#combinator-pattern][<<>>]]
    • [[#symbolic-expression][<<>>]]
      • [[#-215][/*/]]
    • [[#polynomial][<<>>]]
      • [[#-216][/*/]]
    • [[#data-family][<<>>]]
    • [[#type-synonym-family][<<>>]]
    • [[#indexed-type-family][<<>>]]
      • [[#-217][/*/]]
    • [[#typefamilies][<<>>]]
    • [[#error][<<>>]]
      • [[#-218][/*/]]
    • [[#exception][<<>>]]
      • [[#-219][/*/]]
    • [[#constraintkinds][<<>>]]
    • [[#specialisation][<<>>]]
      • [[#-220][/*/]]
    • [[#diagram][<<>>]]
    • [[#cathegory-theoretical-presheaf][Cathegory theoretical <<>>]]
    • [[#topological-presheaf][Topological <<>>]]
    • [[#diagonal-functor][<<>>]]
    • [[#limit-functor][<<>>]]
    • [[#dual-vector-space][<<>>]]
    • [[#fundamental-group][<<>>]]
    • [[#algebra-of-continuous-function][<<>>]]
    • [[#tangent-and-cotangent-bundle][<<>>]]
    • [[#group-action--representation][<<<Group action / representation>>>]]
    • [[#lie-algebra][<<>>]]
    • [[#tensor-product][<<>>]]
    • [[#forgetful-functor-1][<<>>]]
    • [[#free-functor][<<>>]]
    • [[#homomorphism-group][<<>>]]
    • [[#representable-functor][<<>>]]
    • [[#corecursion][<<>>]]
    • [[#coinduction][<<>>]]
    • [[#initial-algebra-of-an-endofunctor][<<>>]]
    • [[#terminal-coalgebra-for-an-endofunctor][<<>>]]
    • [[#continuation][Continuation]]
      • [[#continuation-passing-style][Continuation passing style]]
        • [[#-221][/*/]]
    • [[#controlconcurrentasync][Control.Concurrent.Async]]
    • [[#semilattice][Semilattice]]
  • [[#citation][Citation]]
  • [[#good-code][Good code]]
    • [[#good-type-aliasing][<<<Good: Type aliasing>>>]]
    • [[#good-type-wideness][<<<Good: Type wideness>>>]]
    • [[#good-print][<<<Good: Print>>>]]
    • [[#good-fold][<<<Good: Fold>>>]]
    • [[#good-computation-model][<<<Good: Computation model>>>]]
    • [[#good-make-bottoms-only-local][<<<Good: Make bottoms only local>>>]]
    • [[#good-newtype-wrap-is-ideally-transparent-for-compiler-and-does-not-change-performance][<<<Good: Newtype wrap is ideally transparent for compiler and does not change performance>>>]]
    • [[#good-instances-of-typestype-classes-must-go-with-code-you-write][<<<Good: Instances of types/type classes must go with code you write>>>]]
    • [[#good-functions-can-be-abstracted-as-arguments][<<<Good: Functions can be abstracted as arguments>>>]]
    • [[#good-infix-operators-can-be-bind-to-arguments][<<<Good: Infix operators can be bind to arguments>>>]]
    • [[#good-arbitrary][<<<Good: Arbitrary>>>]]
    • [[#good-principle-of-separation-of-concerns][<<<Good: Principle of Separation of concerns>>>]]
    • [[#good-function-composition][<<<Good: Function composition>>>]]
    • [[#good-point-free][<<<Good: Point-free>>>]]
      • [[#good-point-free-is-great-in-multi-dimentions][<<<Good: Point-free is great in multi-dimentions>>>]]
    • [[#good-functor-application][<<<Good: Functor application>>>]]
    • [[#good-parameter-order][<<<Good: Parameter order>>>]]
    • [[#good-applicative-monoid][<<<Good: Applicative monoid>>>]]
    • [[#good-creative-process][<<<Good: Creative process>>>]]
      • [[#pick-phylosophy-principles-one-to-three-the-more---the-harder-the-implementation][Pick phylosophy principles one to three the more - the harder the implementation]]
      • [[#draw-the-most-blurred-representation][Draw the most blurred representation]]
      • [[#deduce-abstractions-and-write-remotely-what-they-are][Deduce abstractions and write remotely what they are]]
      • [[#model-of-computation][Model of computation]]
        • [[#model-the-domain][Model the domain]]
        • [[#model-the-types][Model the types]]
        • [[#think-how-to-write-computations][Think how to write computations]]
      • [[#create][Create]]
    • [[#good-about-operators--------][Good: About operators =(<$ )= =( *>)= =(< )= =(>> )=]]
    • [[#good-about-functions-like-mapm-sequence_][<<<Good: About functions like {mapM, sequence}_>>>]]
    • [[#good-guideliles][<<<Good: Guideliles>>>]]
      • [[#wikihaskell][Wiki.haskell]]
        • [[#documentation][Documentation]]
          • [[#comments-write-in-application-terms-not-technical][Comments write in application terms, not technical.]]
          • [[#tell-what-code-needs-to-do-not-how-it-does][Tell what code needs to do not how it does.]]
        • [[#haddoc][Haddoc]]
          • [[#put-haddock-comments-to-ever-exposed-data-type-and-function][Put haddock comments to ever exposed data type and function.]]
          • [[#haddock-header][Haddock header]]
        • [[#code][Code]]
          • [[#try-to-stay-closer-to-portable-haskell98-code][Try to stay closer to portable (Haskell98) code]]
          • [[#try-make-lines-no-longer-80-chars][Try make lines no longer 80 chars]]
          • [[#last-char-in-file-should-be-newline][Last char in file should be newline]]
          • [[#symbolic-infix-identifiers-is-only-library-writer-right][Symbolic infix identifiers is only library writer right]]
          • [[#every-function-does-one-thing][Every function does one thing.]]
    • [[#good-use-typed-holes-to-progress-the-code][<<<Good: Use Typed holes to progress the code>>>]]
    • [[#good-haskell-allows-infinite-terms-but-not-infinite-types][<<<Good: Haskell allows infinite terms but not infinite types>>>]]
    • [[#good-use-type-sysnonims-to-differ-the-information][<<<Good: Use type sysnonims to differ the information>>>]]
    • [[#good-use-controlmonadexcept-instead-of-controlmonaderror][Good: Use =Control.Monad.Except= instead of =Control.Monad.Error=]]
    • [[#good-monad-or-applicative][<<<Good: Monad OR Applicative>>>]]
      • [[#start-writing-monad-using-return-ap-liftm-liftm2--instead-of-do][Start writing monad using 'return', 'ap', 'liftM', 'liftM2', '>>' instead of 'do','>>=']]
      • [[#basic-case-when-applicative-can-be-used][Basic case when Applicative can be used]]
      • [[#applicative-block-vs-monad-block][Applicative block vs Monad block]]
    • [[#good-linear-type][<<<Good: Linear type>>>]]
    • [[#good-exception-vs-error][Good: Exception vs Error]]
    • [[#good-let-vs-where][<<<Good: Let vs. Where>>>]]
    • [[#good-rankntypes][<<<Good: RankNTypes>>>]]
    • [[#good-handling-orphan-instance][<<<Good: Handling orphan instance>>>]]
    • [[#good-smart-constructor][<<<Good: Smart constructor>>>]]
    • [[#good-thin-category][<<<Good: Thin category>>>]]
    • [[#good-recursion][<<<Good: Recursion>>>]]
    • [[#good-monoid][<<<Good: Monoid>>>]]
    • [[#good-free-monad][<<<Good: Free monad>>>]]
    • [[#good-use-mostly-where-clauses][<<<Good: Use mostly where clauses>>>]]
    • [[#good-where-clause-is-in-a-scope-with-function-parameters][<<<Good: Where clause is in a scope with function parameters>>>]]
    • [[#good-strong-preference-towards-pattern-matching-over-head-tail-etc-functions][<<<Good: Strong preference towards pattern matching over {head, tail, etc.} functions>>>]]
    • [[#good-patternmatching-is-possible-on-monadic-bind-in-do][<<<Good: Patternmatching is possible on monadic bind in do>>>]]
    • [[#good-applicative-vs-monad][<<<Good: Applicative vs Monad>>>]]
    • [[#good-statet-readert-writert][<<<Good: StateT, ReaderT, WriterT>>>]]
    • [[#good-working-with-monadtrans-and-lift][<<<Good: Working with MonadTrans and lift>>>]]
    • [[#good-dont-mix-where-and-let][<<<Good: Don't mix Where and Let>>>]]
    • [[#good-where-vs-let][<<<Good: Where vs. Let>>>]]
    • [[#good-the-proper-nature-algorithm-that-models-behaviour-of-many-objects-is-computation-heavy][<<<Good: The proper nature algorithm that models behaviour of many objects is computation heavy>>>]]
    • [[#good-in-haskell-parameters-bound-by-lambda-declaration-instantiate-to-only-one-concrete-type][<<<Good: In Haskell parameters bound by lambda declaration instantiate to only one concrete type>>>]]
    • [[#good-instance-is-a-good-structure-to-drew-a-type-line][Good: Instance is a good structure to drew a type line]]
    • [[#good-mtl-vs-transformers][<<<Good: MTL vs. Transformers>>>]]
  • [[#bad-code][Bad code]]
    • [[#bad-pragma][<<>>]]
      • [[#bad-dangerous-language-pragma-option][Bad: Dangerous LANGUAGE pragma option]]
  • [[#useful-functions-to-remember][Useful functions to remember]]
    • [[#prelude][Prelude]]
      • [[#ord][Ord]]
      • [[#calc][Calc]]
      • [[#list-operations][List operations]]
    • [[#datalist][Data.List]]
    • [[#datachar][Data.Char]]
    • [[#quickcheck-1][QuickCheck]]
  • [[#tool][Tool]]
    • [[#ghc-pkg][ghc-pkg]]
    • [[#integration-of-nixosnix-with-haskell-ide-engine-hie-and-emacs-spacemacs][Integration of NixOS/Nix with Haskell IDE Engine (HIE) and Emacs (Spacemacs)]]
      • [[#1-install-the-cachix][1. Install the Cachix]]
      • [[#2-installation-of-hie][2. Installation of HIE]]
        • [[#21-provide-cached-builds][2.1. Provide cached builds]]
        • [[#22a-installation-on-nixos-distribution][2.2.a. Installation on NixOS distribution:]]
        • [[#22b-installation-with-nix-package-manager][2.2.b. Installation with Nix package manager:]]
      • [[#3-emacs-spacemacs-configuration][3. Emacs (Spacemacs) configuration:]]
      • [[#4-open-the-haskell-file-from-a-project][4. Open the Haskell file from a project]]
      • [[#5-be-pleased-writing-code][5. Be pleased writing code]]
      • [[#6-optional-debugging][6. (optional) Debugging]]
    • [[#ghc][GHC]]
      • [[#ghc-code-check-flags][GHC code check flags]]
    • [[#ghci][GHCI]]
      • [[#debugging-in-ghci][Debugging in GHCI]]
    • [[#ghcid][GHCID]]
    • [[#runghc][runghc]]
    • [[#packaging][Packaging]]
      • [[#cabal][Cabal]]
      • [[#nix][Nix]]
        • [[#nixpkgs][<<>>]]
      • [[#cabal2nix][cabal2nix]]
      • [[#hackage2nix][hackage2nix]]
      • [[#cabal2spec---cabal-to-rpm][cabal2spec - Cabal to RPM]]
      • [[#nix-tools][nix-tools]]
      • [[#haskellnix][haskell.nix]]
    • [[#emacsspacemacs][Emacs/Spacemacs]]
    • [[#continuous-integration-platrorms-cis-for-open-source-haskell-projets][Continuous integration platrorms (CIs) for Open Source Haskell projets]]
  • [[#library][Library]]
    • [[#exceptions][Exceptions]]
      • [[#exceptions---optionally-pure-extensible-exceptions-that-are-compatible-with-the-mtl][Exceptions - optionally pure extensible exceptions that are compatible with the mtl]]
      • [[#safe-exceptions---safe-simple-api-equivalent-to-the-underlying-implementation-in-terms-of-power-encourages-best-practices-minimizing-the-chances-of-getting-the-exception-handling-wrong][Safe-exceptions - safe, simple API equivalent to the underlying implementation in terms of power, encourages best practices minimizing the chances of getting the exception handling wrong.]]
      • [[#enclosed-exceptions---capture-exceptions-from-the-enclosed-computation-while-reacting-to-asynchronous-exceptions-aimed-at-the-calling-thread][Enclosed-exceptions - capture exceptions from the enclosed computation, while reacting to asynchronous exceptions aimed at the calling thread.]]
    • [[#memory-management][Memory management]]
      • [[#membrain---type-safe-memory-units][membrain - type-safe memory units]]
    • [[#parsers---megaparsec][Parsers - megaparsec]]
    • [[#clis---optparse-applicative][CLIs - optparse-applicative]]
      • [[#modifiers-attributes][Modifiers {Attributes}]]
      • [[#builders][Builders]]
      • [[#parsers][Parsers]]
      • [[#composing-and-more-complex-parsers][Composing and more complex parsers]]
      • [[#error-handling][Error handling]]
      • [[#shell-expansion][Shell expansion]]
    • [[#html---lucid][HTML - Lucid]]
    • [[#web-applications---servant][Web applications - Servant]]
    • [[#io-libraries][IO libraries]]
      • [[#conduit---practical-monolythic-guarantees-termination-return][Conduit - practical, monolythic, guarantees termination return]]
      • [[#pipes--pipes-parse---modular-more-primitive-theoretically-driven][Pipes + Pipes Parse - modular, more primitive, theoretically driven]]
    • [[#json---aeson][JSON - aeson]]
    • [[#backpack][<<>>]]
    • [[#dsl][DSL]]
      • [[#ivory---edsl-safe-systems-programming-effectively-produce-c-code]["Ivory" - eDSL, safe systems programming, effectively produce C code]]
  • [[#draft][Draft]]
    • [[#exception-handling][Exception handling]]
      • [[#ideal-catching][Ideal catching]]
      • [[#controlexceptionsafe-main-sets-of-functions][=Control.Exception.Safe= main sets of functions]]
      • [[#clean-up-of-actionsresources][Clean-up of actions/resources]]
      • [[#ideal-model][Ideal model]]
      • [[#universal-exception-type][Universal exception type]]
      • [[#individual-exception-types][Individual exception types]]
      • [[#abstract-exception-type][Abstract exception type]]
      • [[#composit-approach][Composit approach]]
      • [[#the-changes-in-ghc-88][The changes in GHC 8.8]]
      • [[#diversity-in-exceptions][Diversity in exceptions]]
      • [[#exception-handling-strategies][Exception handling strategies]]
      • [[#asynchronous-exception][Asynchronous exception]]
      • [[#monadic-error-handling][Monadic Error handling]]
    • [[#constraints][Constraints]]
    • [[#monad-transformers-and-their-type-classes][Monad transformers and their type classes]]
    • [[#layering-monad-transformers][Layering monad transformers]]
    • [[#hoogle][Hoogle]]
      • [[#search][Search]]
      • [[#scope-1][Scope]]
        • [[#default][Default]]
        • [[#hierarchical-module-name-system-from-big-letter][Hierarchical module name system (from big letter):]]
        • [[#packages-lower-case][Packages (lower case):]]
    • [[#st-trick-monad][<<>>]]
      • [[#-222][/*/]]
    • [[#either][<<>>]]
      • [[#-223][/*/]]
    • [[#inverse][<<>>]]
    • [[#inversion][<<>>]]
    • [[#inverse-function][<<>>]]
    • [[#inverse-morphism][<<>>]]
    • [[#partial-inverse][<<>>]]
    • [[#patternsynonyms][<<>>]]
      • [[#-224][/*/]]
    • [[#ghc-debug-keys][<<>>]]
      • [[#-ddump-ds][<<<-ddump-ds>>>]]
        • [[#-225][/*/]]
    • [[#ghc-optimize-keys][<<>>]]
      • [[#-foptimal-applicative-do][<<<-foptimal-applicative-do>>>]]
    • [[#computational-trinitarianism][<<>>]]
      • [[#-226][/*/]]
    • [[#techniques-functional-programming-deals-with-the-state][Techniques functional programming deals with the state]]
      • [[#minimizing][Minimizing]]
      • [[#concentrating][Concentrating]]
      • [[#deferring][Deferring]]
    • [[#functions][Functions]]
    • [[#void][<<>>]]
      • [[#-227][/*/]]
    • [[#intuitionistic-logic][Intuitionistic logic]]
      • [[#-228][/*/]]
    • [[#principle-of-explosion][<<>>]]
      • [[#-229][/*/]]
    • [[#universal-property][Universal property]]
    • [[#yoneda-lemma][Yoneda lemma]]
    • [[#monoidal-category-functoriality-of-adts-profunctors][Monoidal category, functoriality of ADTs, Profunctors]]
    • [[#const-functor][<<>>]]
    • [[#arrow-in-haskell][<<>>]]
    • [[#contravariant-functor][Contravariant functor]]
    • [[#profunctor][Profunctor]]
    • [[#coerce][Coerce]]
      • [[#-230][/*/]]
    • [[#universalexistential-quantification][Universal/Existential quantification]]
      • [[#use-of-existentials][Use of existentials]]
    • [[#propagator][Propagator]]
    • [[#code-technics][Code technics]]
    • [[#algorithm-of-the-hackage-package-release][Algorithm of the Hackage package release]]
      • [[#form-githublab-pre-release][Form Git{Hub,Lab} pre-release]]
      • [[#create-git-branch-release-xxxx1][Create git branch release x.x.x.x+1]]
      • [[#open-up-git-diff-lastverhead-on-one-side-of-the-screen][Open-up git diff ..HEAD on one side of the screen]]
      • [[#open-changelogmd-on-the-other-side-of-the-screen][Open CHANGELOG.md on the other side of the screen]]
      • [[#walk-through-diff-and-populate-changelogmd][Walk through diff and populate CHANGELOG.md]]
        • [[#populate-according-to-pvp][Populate according to PVP]]
          • [[#major-breaking-changes][Major breaking changes]]
          • [[#optional-api-additions-of-functionality][(optional) API additions of functionality]]
          • [[#optional-other-changes-in-the-project-news][(optional) Other changes in the project, news]]
      • [[#check-cabal-sdist-build-passes][Check cabal sdist build passes]]
      • [[#think-what-new-files-canshould-be-included-in-cabal-extra-source-files][Think what new files can/should be included in .cabal extra-source-files]]
      • [[#update-cabal-version][Update .cabal version:]]
      • [[#add-a-git-tag-v][Add a git tag ]]
      • [[#git-push---tags][git push --tags]]
      • [[#optional-remove-git-tag][(optional) (Remove git tag)]]
      • [[#make-a-cabal-sdist][Make a cabal sdist]]
      • [[#upload-package-candidate-to-hackage][Upload package candidate to Hackage]]
      • [[#careful-be-fully-ready-when-you-upload-package-release-to-hackage-since-upload-is-idempotant][(careful) Be fully ready when you upload package release to Hackage, since upload is idempotant]]
      • [[#optional-if-docs-not-posted-on-hackage][(optional) If docs not posted on Hackage]]
        • [[#optional-nix-shell][(optional) Nix-shell]]
        • [[#upload-docs][Upload docs]]
    • [[#is-power-set-functor-is-a-bifunctor][Is power set functor is a bifunctor]]
    • [[#io-1][IO]]
      • [[#base-io-data-types][Base IO Data types]]
        • [[#io-a][IO a]]
        • [[#filepath][FilePath]]
        • [[#handle][Handle]]
        • [[#handleposn][HandlePosn]]
        • [[#standart-handlers][Standart handlers]]
        • [[#iomode][IOMode]]
        • [[#file-locking][File locking]]
        • [[#opening-files][Opening files]]
        • [[#hclose][hClose]]
        • [[#special-cases][Special cases]]
        • [[#handle-operation][Handle operation]]
        • [[#buffermode][BufferMode]]
        • [[#buffering-operation][Buffering operation]]
      • [[#cabal-paths_pkgname][Cabal Paths_pkgname]]
    • [[#lazy][<<>>]]
      • [[#-231][/*/]]
    • [[#traversable][<<>>]]
    • [[#fixed-point][<<>>]]
      • [[#attractive-fixed-point][<<>>]]
      • [[#least-fixed-point][<<>>]]
        • [[#fix][<<>>]]
    • [[#-232][]]
    • [[#conways-law][<<<Conway's law>>>]]
    • [[#f-algebra][<<>>]]
  • [[#reference][Reference]]
    • [[#history][History]]
      • [[#functor-applicative-monad-proposal][<<>>]]
        • [[#-233][/*/]]
      • [[#haskell-98][<<<Haskell 98>>>]]
        • [[#old-instance-termination-rules][<<>>]]
      • [[#great-moments-in-haskell-history-by-type-classes---history-of-haskell]["Great moments in Haskell history" (by Type Classes) - History of Haskell]]
    • [[#resources][Resources]]
      • [[#state-of-the-haskell-ecosystem]["State of the Haskell ecosystem"]]
      • [[#haskell-performance-tools-processes-comparisons-data-information-guides]["Haskell performance" tools, processes, comparisons, data, information, guides]]
      • [[#data-haskell---2017-annotated-links-to-data-science--machine-learning-libraries-overviews-and-benchmarks-of-libraries][data Haskell - (2017) annotated links to data science & machine learning libraries, overviews and benchmarks of libraries]]
    • [[#literature][Literature]]
    • [[#haskell-package-versioning-policy][<<>>]]
      • [[#-234][/*/]]
  • [[#giving-back][Giving back]]
  • Definitions :properties: :ID: 68eb5f9c-7d07-4a32-9440-eb24e1399a7a 🔚

** <<>> :drill: SCHT: <2021-01-29 Fri> :properties: :ID: ef37e5f5-d52b-49eb-837e-1195558b6e79 :DRILL_LAST_INTERVAL: 326.7529 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-08 Sun 23:22] 🔚

\arabicfont{الجبر} /al-jabr/ assemble parts

A system of parts based on given axioms (properties) and operations on them.

\additional

Additional meanings:

  1. Algebra - a set with its algebraic structure.
  2. Abstract algebra - the study of number systems and operations within them.
  3. Algebra - vector space over a field with a multiplication.

*** /*/

<<>>

*** <<>> :drill: :properties: :ID: c97061e0-d726-44d0-bd18-fd1288c46a52 🔚

Composite from simple parts.

Also: Algebraic data type.

*** <<>> :drill: SCHT: <2020-12-28 Mon> :properties: :ID: dcbe48e5-d7dd-400d-9963-d4e00d474b84 :DRILL_LAST_INTERVAL: 145.3949 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.38 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:09] 🔚

/*/ includes axioms that must be satisfied and operations on the underlying (or "carrier") set.

An underlying set with /*/ on top of it also called "an algebra".

// include groups, rings, fields, and lattices. More complex structures can be defined by introducing multiple operations, different underlying sets, or by altering the defining axioms. Examples of more complex // can be many modules, algebras and other vector spaces, and any variations that the definition includes.

#+caption: Algebraic structures #+name: tab--algebraic-structure #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | | Closure | Associativity | Identity | Invertability | Commutativity | Distributive | |-----------------------+---------+---------------+----------+---------------+---------------+--------------| | Semigroupoid | | \check | | | | | | Small Category | | \check | \check | | | | | Groupoid | | \check | \check | \check | | | | Magma | \check | | | | | | | Quasigroup | \check | | | \check | | | | Loop | \check | | \check | \check | | | | Semigroup | \check | \check | | | | | | Inverse Semigroup | \check | \check | | \check | | | | Monoid | \check | \check | \check | | | | | Group | \check | \check | \check | \check | | | | Abelian group | \check | \check | \check | \check | \check | | | Non-unital ring (rng) | \check + \times | \check + \times | \check + | \check + | \check + | \check | | Semiring (rig) | \check + \times | \check + \times | \check + \times | \check \times | \check + | \check | | Ring | \check + \times | \check + \times | \check + \times | \check + \times | \check + | \check |

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-08-07 Fri> :properties: :ID: c44040e1-2dcf-4f25-9dee-05fd95337dc2 :DRILL_LAST_INTERVAL: 103.2126 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 14 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.357 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:59] 🔚

Any non-constant single-variable polynomial with complex coefficients has at least one complex root.

From this definition follows property that the field of complex numbers is algebraically closed.

**** <<>> :drill: :properties: :ID: c40ac83b-c730-4de5-915d-04d76c88398c 🔚

Set with a binary operation which form a closure.

***** <<>> :drill: SCHT: <2020-10-01 Thu> :properties: :ID: 7e67196b-643c-4726-8a17-6207826764bb :DRILL_LAST_INTERVAL: 261.4179 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:56] 🔚

Magma with associative property of operation.

Defined in Haskell as: #+begin_src haskell class Semigroup a where (<>) :: a -> a -> a #+end_src

****** /*/

<<>>

****** <<>> :drill: SCHT: <2020-08-06 Thu> :properties: :ID: 6593c8fb-adda-488b-b86f-9544f62868eb :DRILL_LAST_INTERVAL: 225.3206 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:39] 🔚

Semigroup with identity element.

Ideal ground for any accumulation class.

#+begin_src haskell class Semigroup m => Monoid m where mempty :: m mconcat :: [m] -> m mconcat = foldr mappend mempty #+end_src

More generally in category theory terms:

/*/ - the object ( M ) equipped with two arrows:

( \mu: \ M \ \otimes \ M \ \to M ) called multiplication or product, or tenzor product. ( \eta: \ I \ \to \ M ) called unit,

so ((M, \ \mu, \ \eta )). By its definition category (lets call it ( \mathb{C} ) should have ( \otimes ) and ( I ). Where ( \otimes: \ \mathb{C} \ \times \ \mathb{C} \ \to \ \mathb{C} ) is any operation that combines objects and stays (closed) inside category, so it may be even already category given operation of arrow composition. And ( I ) is an identity object of ( \otimes ) operation.

Category that has one object - always a free monoid (from definition of "Category" - composition, and there is only one object so it is always also the identity object).

For example to represent the whole non-negative integers with the one object and morphism "( 1 )" is absolutely enough, composition operation is "( + )".

#+begin_src haskell import Data.Monoid do show (mempty :: Num a => Sum a) -- "Sum {getSum = 0}" show $ Sum 1 -- "Sum {getSum = 1}" show $ (Sum 1) <> (Sum 1) <> (Sum 1) -- "Sum {getSum = 3}" -- ... #+end_src

And backwards connection. Any monoidal category can be isomorphically transformed into one-object bicategory, thou explaining or proving it is out of the current scope.

Any monad is equivalent up to isomorphism to monoid.

******* /*/

<<>> <<>>

******* <<>> :drill: :properties: :ID: 031cdf43-093d-4959-ac8b-f3e2ad35e7db 🔚

******** <<>> :drill: SCHT: <2020-10-11 Sun> :properties: :ID: ab71d331-f6f3-4edc-b734-c05c2df9630a :DRILL_LAST_INTERVAL: 270.5287 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:58] 🔚

#+begin_src haskell mempty <> x = x #+end_src

******** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: d048e3ea-ef53-4e33-ae78-88a60a07bacb :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:02] 🔚

#+begin_src haskell x <> mempty = x #+end_src

******** <<>> :drill: :properties: :ID: bd721cde-f8be-45a8-b098-6085d5254e2b 🔚

#+begin_src haskell x <> mempty = x (y <> z) = (x <> y) <> z mconcat = foldr (mempty <>) #+end_src

Everything associative can be =mappend=.

******* <<>> :drill: SCHT: <2020-10-08 Thu> :properties: :ID: ece84bf0-fff2-4bda-968c-473c7d7c959e :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:01] 🔚

Operation that forms structure has commutativity property: ( x \circ y = y \circ x )

Opens a big abilities in concurrent and distributed processing.

******** /*/

<<>>

******* <<>> :drill: SCHT: <2020-07-04 Sat> :properties: :ID: 95a42c18-683b-4489-a2e9-e891e3fd9958 :DRILL_LAST_INTERVAL: 117.1166 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:58] 🔚

Monoid that has inverse for every element.

******** /*/

<<>>

******** <<>> :drill: SCHT: <2020-05-27 Wed> :properties: :ID: 778e3114-4600-4a39-a6d3-4f9955c61d66 :DRILL_LAST_INTERVAL: 31.1271 :DRILL_REPEATS_SINCE_FAIL: 4 :DRILL_TOTAL_REPEATS: 3 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:56] 🔚

Commutative monoid that is a group.

********* /*/

<<>>

********* <<>> :drill: SCHT: <2020-06-17 Wed> :properties: :ID: 437c3602-cfc2-4cd1-bdba-be9e0db9c8f8 :DRILL_LAST_INTERVAL: 175.3075 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:23] 🔚

Commutative group under + & monoid under \times, + \times connected by distributive property.

  • and \times are generalized binary operations of addition and multiplication. \times has no requirement for commutativity.

Example: set of same size square matricies of numbers with matrix operations form a ring.

********** /*/

<<>>

*** <<>> :drill: :properties: :ID: dcfa0301-d300-4efd-97b5-510b705012cc 🔚

System for integers where numbers wrap around the certain values (single - /modulus/, plural - /moduli/).

Example - 12-hour clock.

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-08-06 Thu> :properties: :ID: 740ee455-cd6f-4ee2-8ba1-46841e8b010a :DRILL_LAST_INTERVAL: 167.6121 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:36] 🔚

Special numbers where arithmetic wraps around in modular arithmetic.

***** /*/

<<>> - plural.

** <<>> :drill: SCHT: <2020-06-17 Wed> :properties: :ID: a026cdb8-26e0-494e-b51c-b49d0210d61b :DRILL_LAST_INTERVAL: 175.4598 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:37] 🔚

Category ( \mathcal{C} ) consists of the basis:

Primitives:

  1. Objects - ( a^{\mathcal{C}} ). A node. Object of some type. Often sets, than it is Set category.
  2. Arrows - ( {(a,b)}^{\mathcal{C}} ) (AKA morphisms mappings).
  3. Arrow (morphism) composition - binary operation: ( {(a, b)}^{\mathcal{C}} \circ {(b, c)}^{\mathcal{C}} \equiv {(a, c)}^{\mathcal{C}} \ | \ \forall a, b, c \in \mathcal{C} ) AKA principle of compositionality for arrows.

Properties (or axioms):

  1. Associativity of morphisms: ( {h} \circ ({g} \circ {f}) \equiv ({h} \circ {g}) \circ {f} \ \ | \ \ {f}{a \to b}, {g}{b \to c}, {h}_{c \to d} )
  2. Every object has (two-sided) identity morphism (& in fact - exactly one): ( {1}x \circ {f}{a \to x} \equiv {f}{a \to x}, \ \ {g}{x \to b} \circ {1_x} \equiv {g}{x \to b } \ \ | \ \ \forall x \ \exists {1}{x}, \forall {f}{a \to x}, \forall {g}{x \to b} )
  3. Principle of compositionality.

From these axioms, can be proven that there is exactly one identity morphism for every object.

Object and morphism are complete abstractions for anything. In majority of cases under object is a state and morphism is a change.

*** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-07-11 Sat> :properties: :ID: dfd74db1-0c16-430d-83b7-8dcc2fb16d34 :DRILL_LAST_INTERVAL: 76.1545 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 15 :DRILL_FAILURE_COUNT: 5 :DRILL_AVERAGE_QUALITY: 3.266 :DRILL_EASE: 2.2 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:56] 🔚

Generalised category for homological algebra (having a possibility of basic constructions and techniques for it).

Category which:

  • has a zero object,
  • has all binary biproducts,
  • has all kernel's and cokernels,
  • (it has all pullbacks and pushouts)
  • all monomorphism's and epimorphism's are normal. Abelian category is a stable structure; for example it is regular and satisfy the snake lemma. The class of Abelian categories is closed under several categorical constructions.

There is notion of Abelian monoid (AKS Commutative monoid) and Abelian group (Commutative group).

Basic examples of /*/:

  • category of Abelian groups
  • category of modules over a ring.

/*/ are widely used in algebra, algebraic geometry, and topology.

/*/ has many constructions like in categories of modules:

  • kernels
  • exact sequences
  • commutative diagrams

/*/ has disadvantage over category of modules. Objects do not necessarily have elements that can be manipulated directly, so traditional definitions do not work. Methods must be supplied that allow definition and manipulation of objects without the use of elements.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-07-17 Fri> :properties: :ID: b3bc17d9-83e4-4862-a391-27e0b30e011e :DRILL_LAST_INTERVAL: 86.4884 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.75 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:37] 🔚

Axiom of Category.

**** /*/

<<>> <<>>

*** <<>> :drill: :properties: :ID: 1a5d0ae1-6c37-4e53-860b-beddb4c00074 🔚

From the name, in this Category:

  • objects of ( End ) are Endofunctors ( E^{\mathcal{C \to C}} )
  • morphisms are natural transformations between endofunctors

*** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 8cb2d494-936a-4031-b1c1-7ee18caecf31 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:43] 🔚

/*/ full translation (map) of one category into another. Translating objects and morphisms (so as an input can take morphism or object of the source category).

"Full translation" means every part gets represented in some shape or form, but at all does not means ideal translation. For example, all categories can be translated into (mapped onto) a single object monoidal category. // - forgetful - discards part of the structure. // - faithful - gives unique isomorphic (bijective) preservation of all source morphisms (injective on Hom-sets). /*/ - full - translation of morphisms fully covers all the morphisms between according objecs in the target categoty (functor analog of epimorphism).

For Haskell Functor type class or fmap - see Power set functor.

Definition (axiomatic properties): =Functor=:

  • ( \forall a^{\mathcal{C}} \ : \ \exists! F^{\mathcal{C \to D}}(a) ) - every source object is mapped to some object in the target category.
  • ( \forall \overrightarrow{(a, b)}^{\mathcal{C}} \ : \ \exists! \overrightarrow{(F^{\mathcal{C \to D}}(a),F^{\mathcal{C \to D}}(b))}^{\mathcal{D} }) - every source morphism is mapped inside target to some morphism between corresponding objects.

From those two tautologically goes:

  • ( \forall {x^{\mathcal{C}}}, y=\overrightarrow{f}^{\mathcal{C}}(x), \forall \overrightarrow{g}^{\mathcal{C}}(y) \ : \ F^{\mathcal{C \to D}}(\overrightarrow{g}^{\mathcal{C}} \circ \overrightarrow{f}^{\mathcal{C}}) = F^{\mathcal{C \to D}}(\overrightarrow{g}^{\mathcal{C}}) \circ F^{\mathcal{C \to D}}(\overrightarrow{f}^{\mathcal{C}})) - every composition in ( \mathcal{C} ) translates as a composition of according morphisms in ( \mathcal{D} ), in other words - composition translates directly.

So, the composition of functors equal to one functor with composition of all morphisms. This process called functor fusion.

In Haskell Hask functor axioms have a form: #+begin_src haskell fmap f id = id f :: (f -> f) -- All objects (f) in Hask can be mapped to Hask. fmap id id :: (a -> a) -- fmap can map objects. This is constructed identity endofunctor on Hask. fmap id :: (f a -> f a) -- fmap can map objects, algebraic also (which includes funcitons (morphisms)) (\ x -> fmap x id) :: (a -> b) -> (a -> b) (flip fmap id) :: (a -> b) -> (a -> b) -- & functions (morphisms) just as well, polymorphism means functions are also simple type objects, and in Haskell functions are first class -- This is enough to prove fmap is a functor, composition property derives from this two #+end_src

In Haskell type functor axioms have a form: #+begin_src haskell fmap id = id fmap (f . g) = fmap f . fmap g -- OR free-forming functor laws more expicitly: (fmap id) a = id a -- Remaps all source objects (a) to object, in identity case maps all a to a (fmap f) a = (f a) -- Remaps all source objects using a specialized functor by declaring a the funciton that does remapping of objects (fmap [email protected]((a -> b) -> c)) [email protected](a -> b) = (hof fun) = (a -> b) -> c -- Because of polymorphicity - in Haskell morphisms are also can be objects for Hask category - fmap instantiated functor translates not only objects, but all morphisms to morphisms as well. (fmap (a -> b)) anything = ((a -> b) anything) -- On Hask subcategory (f x), this is an endofunctor: f a -> f b. (fmap f) . (fmap g) = (fmap $ f . g) -- Composition law #+end_src

Since // is 1-1 mapping of initial objects - it is a memoizable dictionary with cardinality of initial objects. Also in Hask category functors are obviously endofunctors \therefore they are special kinds of containers for the parametric values (AKA product type). In Haskell product type // are endofunctors from polymorphic type into a functor wrapper of a polymorphic type.

/*/ translates in one direction, and does not provide algorythm of reversing itself or retriving the parametric value.

**** /*/

<<>> <<>> - something that has functor properties, and so also is a functor.

**** <<>> :drill: SCHT: <2021-06-03 Thu> :properties: :ID: 1169dfd1-4e31-4789-a777-288fc9208094 :DRILL_LAST_INTERVAL: 303.331 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.667 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-04 Tue 19:31] 🔚

( \mathcal{P^{S \to P(S)}} )

/*/ - functor from set ( S ) to its power set ( \mathcal{P}(S) ).

In Haskell terms - a power set functor additionally accepts function parametrisation.

Functor type class in Haskell defines a // as fmap in a form of bifunctor. It allows to do function application inside type structure layers (denoted ( f ) or ( m )). IO is also such structure. Power set is unique to the set, // is unique to the data type (to the category also). Any endofunctor embodies into //. It is easily seen from Haskell definition - that the // is the polymorphic generalization over any endofunctor in a category.

Application of a function to /*/ gives a particular endofunctor (see Hask category).

#+begin_src haskell class Functor f where fmap :: (a -> b) -> f a -> f b #+end_src

Functor instance must be of kind =( * -> * )=, so instance for higher-kinded data type must be applied until this kind.

Composed /*/ can lift functions through any layers of structures that belong to Functor type class.

/*/ can be used to filter-out the structure through strucure composition, for example - composition with error cases (Nothing & Left cases) in Maybe, Either and related types.

***** /*/

<<>> <<>>

***** <<>> :drill: SCHT: <2020-06-03 Wed> :properties: :ID: 653e04a0-f7b1-4c48-b0c1-e6c83bc6db7c :DRILL_LAST_INTERVAL: 181.5069 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-04 Wed 01:15] 🔚

Type instance of functor should abide this properties:

****** /*/

<<>>

****** <<>> :drill: SCHT: <2020-08-17 Mon> :properties: :ID: 46aa6606-2ac1-477e-9632-e79143f4fe3b :DRILL_LAST_INTERVAL: 178.6567 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:36] 🔚

Functor translates object & its identity morphism to target object & its identity morphism.

#+begin_src haskell fmap id == id #+end_src

****** <<>> :drill: :properties: :ID: a25f03e6-0423-41b5-92a1-26d84bd6243e 🔚

Full transparency of composition translation. So order of composition and translation does not metter, the result is always the same.

#+begin_src haskell fmap (f . g) == fmap f . fmap g #+end_src

Including cases: a) translate everything one-by-one and assemble at destination category. b) assemble everything in source cetegory and translate in one go once.

Composing in source category and translating at once - is a much-much more effective computation (known as "functor <<<fusion">>>).

***** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: d6a94338-9bce-4513-8a51-66aefcc483fb :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:51] 🔚

#+begin_src haskell fmap :: (a -> b) -> (f a -> f b) #+end_src

Functor takes function =a -> b= and returns a function =f a -> f b= this is called lifting a function. Lift does a function application through the data structure.

****** /*/

<<>>

***** <<>> :drill: SCHT: <2020-09-14 Mon> :properties: :ID: 85146d1c-7cb7-4c9b-a998-791b33f1a518 :DRILL_LAST_INTERVAL: 168.9234 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 9 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.111 :DRILL_EASE: 2.72 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:51] 🔚

Since:

  • ( \forall e \in S : \ \exists {e} , \in , {\mathcal{P}(S)} \ \vDash \ \ \forall e \in S : \ \exists (e \to {e}) \equiv unit )
  • ( \forall \mathcal{P}(S) : \ \mathcal{P}(S) \in \mathcal{P}(S) \ \vDash \ \ \forall \mathcal{P}(S) : \ \exists (\mathcal{P}(\mathcal{P}(S)) \to \mathcal{P}(S)) \equiv join )

**** <<>> :drill: :properties: :ID: f175e7f3-f5bc-4c5c-b351-9df5080720b1 🔚

Functor that forgets part or all of what defines structure in domain category. ( F^{\mathbf {Grp} \to \mathbf {Set}} ) that translates groups into their underlying sets. Constant functor is another example.

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-12-22 Tue> :properties: :ID: 9dbbb6a7-e9ae-4c29-8468-aa20fc143b84 :DRILL_LAST_INTERVAL: 268.7255 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-28 Sat 19:18] 🔚

Maps all category to itself. All objects and morphisms to themselves.

Denotation: ( 1^{\mathcal{C \to C}} )

**** <<>> :drill: SCHT: <2020-07-07 Tue> :properties: :ID: 96d8e579-c7b5-45a0-afbe-c4fca13c4637 :DRILL_LAST_INTERVAL: 224.8335 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:16] 🔚

Is a functor which source (domain) and target (codomain) are the same category.

( F^{\mathcal{C \to C}}, E^{\mathcal{C \to C}} )

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-09-02 Wed> :properties: :ID: 423ac24e-497b-4ab1-b1c5-99ed84ec6546 :DRILL_LAST_INTERVAL: 194.5828 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:45] 🔚

/*/ - Computer science term. Category theory name - lax monoidal functor. And in category ( Set ), and so in category ( Hask ) all applicatives and monads are strong (have tensorial strength).

/*/ - sequences functorial computations (plain functors can't).

#+begin_src haskell (<*>) :: f (a -> b) -> f a -> f b #+end_src

Requires Functor to exist. Requires Monoidal structure.

Has monoidal structure rules, separated form function application inside structure.

Data type can have several applicative implementations.

Standard definition: #+begin_src haskell class Functor f => Applicative f where (<*>) :: f (a -> b) -> f a -> f b pure :: a -> f a #+end_src

=pure= - if a functor, identity Kleisli arrow, natural transformation.

Composition of // always produces //, contrary to monad (monads are not closed under composition).

=Control.Monad= has an old function =ap= that is old implementation of =<*>=: #+begin_src haskell ap :: Monad m => m (a -> b) -> m a -> m b #+end_src

***** /*/

<<>> <<>> <<>>

***** <<>> :drill: :properties: :ID: e2527c05-e4d8-49e6-8648-02d49ab27c3a 🔚

***** /*/ <<>>

****** <<>> :drill: SCHT: <2020-09-07 Mon> :properties: :ID: 2e87e916-1501-4310-9887-e0bcf7b9e1ca :DRILL_LAST_INTERVAL: 181.9534 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 11 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.364 :DRILL_EASE: 2.24 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 13:00] 🔚

#+begin_src haskell pure id <*> v = v #+end_src

****** <<>> :drill: SCHT: <2020-07-22 Wed> :properties: :ID: 74ed933d-bb1e-4169-919a-b3c491973011 :DRILL_LAST_INTERVAL: 190.2455 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 2.875 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:00] 🔚

Function composition works regularly. #+begin_src haskell pure (.) <> u <> v <> w = u <> (v <*> w) #+end_src

****** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: fe44ce3c-3912-48bd-8e60-367cc3ac3b20 :DRILL_LAST_INTERVAL: 173.9763 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.374 :DRILL_EASE: 2.04 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-28 Sat 21:05] 🔚

Internal function application doesn't change the structure around values.

#+begin_src haskell pure f <*> pure x = pure (f x) #+end_src

****** <<>> :drill: SCHT: <2020-06-27 Sat> :properties: :ID: f3e40391-0f29-4689-852c-6fc7c3f57dfd :DRILL_LAST_INTERVAL: 65.6822 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.48 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:34] 🔚

On condition that internal order of evaluation is preserved - order of operands is not relevant. #+begin_src haskell u <> pure y = pure ($ y) <> u #+end_src

***** <<>>

****** <<<liftA*>>>

******* <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 8d9bbfb6-95d0-46c5-85bc-05c357721882 :DRILL_LAST_INTERVAL: 133.7192 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:59] 🔚

Essentially a fmap. #+begin_src haskell :type liftA liftA :: Applicative f => (a -> b) -> f a -> f b #+end_src

Lifts function into applicative function.

******* <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 68d78ba7-589e-4eb0-90fc-c6d286fd327e :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:55] 🔚

Lifts binary function across two Applicative functors. #+begin_src haskell liftA2 :: Applicative f => (a -> b -> c) -> f a -> f b -> f c #+end_src

#+begin_src haskell liftA2 f x y == pure f <> x <> y #+end_src

******* <<<liftA2 (<*>)>>> :drill: :properties: :ID: ac1da978-3adc-447a-a20d-3f15f8cfd940 🔚

liftA2 (<*>) is an applicative that lifts a binary operation over the two layers (2x2). Pretty useful to remember it. #+begin_src haskell liftA2 :: ( a -> b -> c ) -> f a -> f b -> f c <> :: (f (a -> b) -> f a -> f b) liftA2 (<>) :: f1 (f2 (a -> b)) -> f1 (f2 a) -> f1 (f2 b) #+end_src

******* liftA2 (liftA2 (<*>)) :drill: :properties: :ID: 276bd112-3c4c-4c31-9650-28bce44786f9 🔚

liftA2 (<*>) 3-layer version.

******* <<>> :drill: SCHT: <2020-10-10 Sat> :properties: :ID: 8371488b-da13-401b-9648-c286f2af0c99 :DRILL_LAST_INTERVAL: 269.6572 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:01] 🔚

liftA2 3-parameter version.

#+begin_src haskell liftA3 f x y z == pure f <> x <> y <*> z #+end_src

****** Conditional applicative computations :drill: :properties: :ID: 4c9c0341-bcaf-4965-9316-f657015323ef 🔚

#+begin_src haskell when :: Applicative f => Bool -> f () -> f () #+end_src

Only when =True= - perform an applicative computation.

#+begin_src haskell unless :: Applicative f => Bool -> f () -> f () #+end_src

Only when =False= - perform an applicative computation.

***** <<>> :drill: :properties: :ID: c67fa1eb-a529-43a8-b88b-926325e124ce 🔚

****** <<>> :drill: SCHT: <2020-06-23 Tue> :properties: :ID: 72602f6e-4290-4db5-bd26-f6abe614384d :DRILL_LAST_INTERVAL: 62.4354 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:21] 🔚

#+begin_src haskell -- Applicative f => -- f ~ Identity type Id = Identity instance Applicative Id where pure :: a -> Id a (<*>) :: Id (a -> b) -> Id a -> Id b

mkId = Identity xs = [1, 2, 3]

const <$> mkId xs <*> mkId xs' -- [1,2,3] #+end_src

****** <<>> :drill: SCHT: <2020-05-02 Sat> :properties: :ID: 9389eea3-10e3-410b-a6ef-a56d9ab7163e :DRILL_LAST_INTERVAL: 53.7507 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 13:09] 🔚

It holds only to one value. The function does not exist and last parameter is a phantom. #+begin_src haskell -- Applicative f => -- f ~ Constant e type C = Constant instance Applicative C where pure :: a -> C e a (<*>) :: C e (a -> b) -> C e a -> C e b #+end_src

****** <<>> :drill: SCHT: <2020-10-16 Fri> :properties: :ID: 5929b239-fa46-40c6-9896-a2dabe40f619 :DRILL_LAST_INTERVAL: 221.1724 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:58] 🔚

"There also can be no function at all."

If function might not exist - embed =f= in Maybe structure, and use Maybe applicative. #+begin_src haskell -- f ~ Maybe type M = Maybe pure :: a -> M a (<*>) :: M (a -> b) -> M a -> M b #+end_src

****** <<>> :drill: :properties: :ID: f85602e3-3339-4ab7-ac38-5025b8aa6828 🔚

=pure= is =Right=. Defaults to =Left=. And if there is two =Left='s - to Left of the first argument.

****** <<>> :drill: SCHT: <2020-12-26 Sat> :properties: :ID: 84ed0f96-b39b-4132-aafa-c6e58cb280ab :DRILL_LAST_INTERVAL: 143.2822 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:07] 🔚

The Validation data type isomorphic to Either, but has accumulative Applicative on the Left side. Validation data type does not have a monad implemented. For Either monad monad has simple implementation: =Left= case drops computation and returns =Left= value. Monad needs to process the result of computation - for Validation - it requires to be able to process all =Left= error statement cases for Validation, it is or non-terminaring Monad or one which is impossible to implement in polymorphic way with Validation.

***** <<>> :drill: SCHT: <2021-03-17 Wed> :properties: :ID: b1faf835-213f-4336-86a9-8e331dd60986 :DRILL_LAST_INTERVAL: 317.8379 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.715 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-05-03 Sun 13:09] 🔚

\textgreek{μόνος} /monos/ sole

\textgreek{μονάδα} /monáda/ unit

In loose terms, /*/ - is an ability built over structures that allows to compose functions that produce that structures.

Since it is possible to express unpure functions with equivalent pure functions that produce a structure, // become widely used in Haskell for those cases also. // with lazy evaluation also allows controll over the continuation of calculations by early terminations.

/*/ - lax monoid in endofunctor category, that relies on ( \eta ) (unit) and ( \mu ) (join) natural transformations to form an equivalent of identity.

Monad on ( \mathcal{C} ) is ( {E^{\mathcal{C \to C}}, , \eta, , \mu} ):

  • ( E^{\mathcal{C \to C}} ) - is an endofunctor
  • two natural transformations, ( 1^c \to E ) and ( E \circ E \to E ):
    • ( \eta^{1^{\mathcal{C}} \to E} = {unit}^{Identity \to E}(x) = f^{ x \to E(x)}(x) )
    • ( \mu^{(E \circ E) \to E} = {join}^{(E \circ E) \to (Identity \circ E)}(x) = | y = E(x) | = f^{E (y) \to y}(y) )

where:

  • ( \mathcal{C} ) is a category
  • ( 1^{\mathcal{C}} ) denotes the ( \mathcal{C} ) identity functor
  • ( (E \circ E) ) - endofunctor ( \mathcal{C \to C} )

Definition with ( {E^{\mathcal{C \to C}}, , \eta, , \mu} ) (in Hask: (( {e , :: , f , a , \to , f , b, \ pure, \ join} ))) - is classic categorical, in Haskell minimal complete definition is ( {fmap, , pure, , (>>=)} ).

While ( T ) is mode classical Category theory notation, we used the ( E \equiv T ) substitution for purposes of notation being more understandable.

If there is a structure ( S ), and a way of taking object ( x ) into ( S ) and a way of collapsing ( S \circ S ) - there probably a monad.

Monad structure:

\begin{tikzcd} & & {} \arrow[d, "\eta", Rightarrow] & & \ C \arrow[rrrr, "Id", bend left=49] \arrow[rrrr, "E"] \arrow[rrrr, "E^{2}", bend right=49] & & {} & & C \ & & {} \arrow[u, "\mu", Rightarrow] \end{tikzcd}

Mostly monads used for sequencing actions (computations) (that looks like imperative programming), with ability to dependend on previous chains. Note if monad is commutative - it does not order actions.

Monad can shorten/terminate sequence of computations. It is implemented inside Monad instance. For example Maybe monad on Nothing drops chain of computation and returns Nothing.

// inherits the Applicative instance methods: #+begin_src haskell import Control.Monad (ap) return == pure ap == (<>) -- + Monad requirement #+end_src

#+latex: {\footnotesize #+caption: Monad in mathematics and Haskell #+name: tab--monad-in-mathematics-haskell #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Math | Meaning | Cat/Fctr | ( X \in C ) | Type | Haskell | |----------+-----------------------------------------+-----------------+------------------------+---------------------------+---------| | ( Id ) | endofunctor "Id" | ( C \to C ) | ( X \to Id (X) ) | ( a \to a ) | id | | ( E ) | endofunctor "monad" | ( C \to C ) | ( X \to E (X) ) | ( m \ a \to m \ b ) | fmap | | ( \eta ) | natural transformation "unit" | ( Id \to E ) | ( Id (X) \to E (X) ) | ( a \to m \ a ) | pure | | ( \mu ) | natural transformation "multiplication" | ( E \circ E \to E ) | ( E (E(X)) \to E (X) ) | ( m \ (m \ a) \to m \ a ) | join | #+latex: }

Internals of Monad are Haskell data types, and as such - they can be consumed any number of times.

Composition of monadic types does not always results in monadic type.

****** /*/

<<>> <<>>

****** <<>> :drill: SCHT: <2021-05-15 Sat> :properties: :ID: 7829bf03-a14b-411b-8460-7a8781227b60 :DRILL_LAST_INTERVAL: 282.7693 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 9 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.333 :DRILL_EASE: 2.14 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:24] 🔚

Monad corresponds to functor properties & applicative properties and additionally:

******* /*/ <<>>

******* <<>> :drill: SCHT: <2020-08-20 Thu> :properties: :ID: 2a41dd66-e0bf-4741-932f-9d28ae3a95c7 :DRILL_LAST_INTERVAL: 164.0829 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.4 :DRILL_EASE: 2.1 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:59] 🔚

#+begin_src haskell pure x >>= f == f x #+end_src

Explanation: #+begin_src haskell

= :: Monad f => f a -> (a -> f b) -> f b pure x >>= f == f x #+end_src

Rule that >>= must get first argument structure internals and apply to the function that is the second argument.

Diagram on category level:

\begin{tikzcd} & & {} \arrow[dd, "\eta", Rightarrow] & & & & {} \arrow[dd, "I", Rightarrow] & & \ C \arrow[rrrr, "Id", bend left=49] \arrow[rrrr, "T", bend right=49] \arrow[rrrrrrrr, "T", bend right=75] & & & & C \arrow[rrrr, "T", bend left=49] \arrow[rrrr, "T", bend right=49] & & & & C \ & & {} & & {} \arrow[dd, "\mu", Rightarrow] & & {} & & \ & & & & & & & & \ & & & & {} \end{tikzcd}

Diagram on endomorphism level:

\begin{tikzcd} Id \circ T \arrow[rr, "\eta \circ I"] \arrow[rrdd, no head, Rightarrow] & & T^{2} \arrow[dd, "\mu"] \ & & \ & & T \end{tikzcd}

******* <<>> :drill: SCHT: <2020-12-06 Sun> :properties: :ID: c009e530-319b-4127-8ca3-c05faf4f86cd :DRILL_LAST_INTERVAL: 228.2149 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.4 :DRILL_EASE: 2.1 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:15] 🔚

#+begin_src haskell f >>= pure == f #+end_src

Explanation: #+begin_src haskell

= :: Monad f => f a -> (a -> f b) -> f b f >>= pure == f #+end_src AKA it is a tacit description of a monad bind as endofunctor.

Diagram on category level:

\begin{tikzcd} & & {} \arrow[dd, "I", Rightarrow] & & & & {} \arrow[dd, "\eta", Rightarrow] & & \ C \arrow[rrrr, "T", bend left=49] \arrow[rrrr, "T", bend right=49] \arrow[rrrrrrrr, "T", bend right=75] & & & & C \arrow[rrrr, "Id", bend left=49] \arrow[rrrr, "T", bend right=49] & & & & C \ & & {} & & {} \arrow[dd, "\mu", Rightarrow] & & {} & & \ & & & & & & & & \ & & & & {} \end{tikzcd}

Diagram on endomorphism level:

\begin{tikzcd} T^{2} \arrow[dd, "\mu"] & & T \circ Id \arrow[ll, "I \circ \eta"] \arrow[lldd, no head, Rightarrow] \ & & \ T \end{tikzcd}

******* <<>> :drill: SCHT: <2020-06-17 Wed> :properties: :ID: 24c71ee3-c7b5-46ca-a9fa-6dff090cf836 :DRILL_LAST_INTERVAL: 55.7955 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:12] 🔚

#+begin_src haskell join (join (m m) m) == join (m join (m m)) (m >>= f) >>= g == m >>= (\ x -> f x >>= g) #+end_src

In diagram form:

Category level:

\begin{tikzcd} & & {} \arrow[dd, "I", Rightarrow] & & & & {} \arrow[dd, "\mu", Rightarrow] & & \ C \arrow[rrrr, "T", bend left=49] \arrow[rrrr, "T", bend right=49] \arrow[rrrrrrrr, "T", bend right=75] & & & & C \arrow[rrrr, "T^{2}", bend left=49] \arrow[rrrr, "T", bend right=49] & & & & C \ & & {} & & {} \arrow[dd, "\mu", Rightarrow] & & {} & & \ & & & & & & & & \ & & & & {} \end{tikzcd}

is ( = ) to:

\begin{tikzcd} & & {} \arrow[dd, "\mu", Rightarrow] & & & & {} \arrow[dd, "I", Rightarrow] & & \ C \arrow[rrrr, "T^{2}", bend left=49] \arrow[rrrr, "T", bend right=49] \arrow[rrrrrrrr, "T", bend right=75] & & & & C \arrow[rrrr, "T", bend left=49] \arrow[rrrr, "T", bend right=49] & & & & C \ & & {} & & {} \arrow[dd, "\mu", Rightarrow] & & {} & & \ & & & & & & & & \ & & & & {} \end{tikzcd}

So, ( \mu \circ (\mu \circ I) = \mu \circ (I \circ \mu) )

Endomorphism level:

\begin{tikzcd} & & T^{3} \arrow[dd, "\mu \circ I", bend right=49] \arrow[dd, "I \circ \mu", bend left=49] & & \ & & & & \ & & T^{2} \arrow[dd, "\mu"] & & \ & & & & \ & & T \end{tikzcd}

****** <<>> :drill: :properties: :ID: 3d4d8b32-1508-41b1-83a8-c0a910d8e1e8 🔚

#+begin_src haskell class Applicative m => Monad m where (>>=) :: m a -> (a -> m b) -> m b (>>) :: m a -> m b -> m b return :: a -> m a #+end_src

******* <<>> :drill: SCHT: <2020-06-04 Thu> :properties: :ID: 379a53d8-b1a9-4e0d-a1c6-fe201b9e9fd4 :DRILL_LAST_INTERVAL: 162.3323 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:30] 🔚

Is a monoid over monad, with additional rules. The precise set of rules (properties) not agreed upon. Class instances obey /monoid/ & /left zero/ rules, some additionally obey /left catch/ and others /left distribution/.

/*/ currently reforms (MonadPlus reform proposal) into several smaller and strictly defined type classes.

Subclass of an Alternative.

******** /*/

<<>>

****** Functor -> Applicative -> Monad progression :drill: :properties: :ID: 21916c6b-42f9-46be-a4bb-60200aa5cb8d 🔚

#+begin_src haskell <$> :: Functor f => (a -> b) -> f a -> f b <*> :: Applicative f => f (a -> b) -> f a -> f b =<< :: Monad f => (a -> f b) -> f a -> f b #+end_src =pure= & =join= are Natural transformations for the =fmap=.

****** <<>> :drill: :properties: :ID: e15d6b3b-61de-489d-8a06-9986b24926d6 🔚

******* <<>> :drill: SCHT: <2020-10-08 Thu> :properties: :ID: bb5891cb-a918-476b-a27a-4d342bdc30a2 :DRILL_LAST_INTERVAL: 268.496 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:01] 🔚

#+begin_src haskell return == pure #+end_src Nonstrict.

******* <<>> :drill: :properties: :ID: fda130b8-e8ae-4c3d-948a-94129d562a63 🔚

#+begin_src haskell join :: Monad m => m (m a) -> m a #+end_src

Generales knowledge of =concat=.

Kleisli composition that flattens two layers of structure into one.

The way to express ordering in lambda calculus is to nest.

******** /*/

<<>>

******** join . fmap == (=<<)

#+begin_src haskell -- b = f b fmap :: Monad f => (a -> f b) -> f a -> f (f b) join :: Monad f => f (f a) -> f a join . fmap :: Monad f => (a -> f b) -> f a -> f b flip >>= :: Monad f => (a -> f b) -> f a -> f b #+end_src

******* <<>> :drill: :properties: :ID: b288ba16-30a9-4550-b037-f77d4c96e95a 🔚

#+begin_src haskell

= :: Monad f => f a -> (a -> f b) -> f b join . fmap :: Monad f => (a -> f b) -> f a -> f b #+end_src Nonstrict.

The most ubiqutous way to >>= something is to use Lambda function: #+begin_src haskell getLine >>= \name -> putStrLn "age pls:" #+end_src

Also a neet way is to bundle and handle Monad - is to bundle it with bind, and leave applied partially. And use that partial bundle as a function - every evaluation of the function would trigger evaluation of internal Monad structure. Thumbs up.

#+begin_src haskell printOneOf :: Bool -> IO () printOneOf False = putStr "1" printOneOf True = putStr "2"

quant :: (Bool -> IO b) -> IO b quant = (>>=) (randomRIO (False, True))

recursePrintOneOf :: Monad m => (t -> m a) -> t -> m b recursePrintOneOf f x = (f x) >> (recursePrintOneOf f x)

main :: IO () main = recursePrintOneOf (quant) $ printOneOf #+end_src

******** /*/

<<>> <<>> <<>> <<>>

#+begin_src haskell (>>=)

= (=<<) =<< #+end_src

******* <<>> =(>> ) \equiv ( *>)=: :drill: SCHT: <2020-06-09 Tue> :properties: :ID: f8d9b6e3-b18c-4996-a86d-08107f8eec1f :DRILL_LAST_INTERVAL: 167.0823 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.714 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:38] 🔚

Sequencing operator, analog to the semicolon (or newline) in imperative languages. Discard value result of the action, sequentially add next (compose with) next action. Applicative has a similar operator.

#+begin_src haskell (>>) :: m a -> m b -> m b (*>) :: f a -> f b -> f b #+end_src

******* Monadic versions of list functions :drill: :properties: :ID: 0a38c76a-ae98-46dd-830a-62424aa6c8f7 🔚

#+begin_src haskell sequence :: (Traversable t, Monad m) => t (m a) -> m (t a) #+end_src

Sequence gets the traversable of monadic computations and swaps it into monad computation of taverse. In the result the collection of monadic computations turns into one long monadic computation on traverse of data.

If some step of this long computation fails - monad fails.

#+begin_src haskell mapM :: (Traversable t, Monad m) => (a -> m b) -> t a -> m (t b) #+end_src

=mapM= gets the AMB function, then takes traversable data. Then applies AMB function to traversable data, and returns converted monadic traversable data.

#+begin_src haskell foldM :: (Foldable t, Monad m) => (b -> a -> m b) -> b -> t a -> m b foldl :: Foldable t => (b -> a -> b) -> b -> t a -> b #+end_src

/*/ is a monadic =foldl=.

=b= is initial comulative value, =m b= is a comulative bank. Right folding achieved by reversing the input list.

#+begin_src haskell filterM :: Applicative m => (a -> m Bool) -> [a] -> m [a] filter :: (a -> Bool) -> [a] -> [a] #+end_src

Take Boolean monadic computation, filter the list by it.

#+begin_src haskell zipWithM :: Applicative m => (a -> b -> m c) -> [a] -> [b] -> m [c] zipWith :: (a -> b -> c) -> [a] -> [b] -> [c] #+end_src

Take monadic combine function and combine two lists with it.

#+begin_src haskell msum :: (Foldable t, MonadPlus m) => t (m a) -> m a sum :: (Foldable t, Num a) => t a -> a #+end_src

******* <<<liftM*>>> :properties: :ID: 6a0f3747-8f90-496b-9c5d-b4794502b725 🔚

******** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 10f01bcb-ef2b-45c5-b950-6f2cb56eb908 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:39] 🔚

Essentially a fmap.

#+begin_src haskell liftM :: Monad m => (a -> b) -> m a -> m b #+end_src

Lifts a function into monadic equivalent.

******** <<>> :drill: :properties: :ID: 5915fc63-5e3a-47fa-83ba-3904abeccb14 🔚

Monadic liftA2.

#+begin_src haskell liftM2 :: Monad m => (a -> b -> c) -> m a -> m a -> m c #+end_src

Lifts binary function into monadic equivalent.

****** <<>> :drill: SCHT: <2020-05-14 Thu> :properties: :ID: f0f0fdd4-f056-4d4d-85ad-f449103b1d8c :DRILL_LAST_INTERVAL: 140.9922 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.125 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:38] 🔚

Category ( \mathcal{C} ) comonad is a monad of opposite category ( \mathcal{C}^{op} ).

****** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 0210aefe-3d66-4279-be2d-d323eef71954 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:02] 🔚

Morphism that while doing computation also adds monadic-able structure.

#+begin_src haskell a -> m b #+end_src

******* /*/

<<>> <<>> <<>>

****** <<>> :drill: :properties: :ID: 2ca0a8e3-3fc8-4b82-90ae-99c684695d80 🔚

Composition of Kleisli arrows.

#+begin_src haskell (<=<) :: Monad m => (b -> m c) -> (a -> m b) -> a -> m c infixr 1 ;; compare (.) :: (b -> c ) -> (a -> b ) -> a -> c #+end_src

Often used left-to-right version:

#+begin_src haskell (>=>) :: Monad m => (a -> m b) -> (b -> m c) -> a -> m c ;; compare (>>=) :: Monad m => m a -> (a -> m b) -> m b #+end_src

Which allows to replace monadic bind chain with Kleisli composition.

#+begin_src haskell f1 arg >>= f2 >>= f3

f1 >=> f2 >=> f3 $ arg

f3 <=< f2 <=< f1 $ arg #+end_src

****** <<>> :drill: SCHT: <2020-05-29 Fri> :properties: :ID: 4039e73f-073c-4930-9753-1af3fde66050 :DRILL_LAST_INTERVAL: 46.8802 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 15 :DRILL_FAILURE_COUNT: 4 :DRILL_AVERAGE_QUALITY: 3.333 :DRILL_EASE: 2.1 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-12 Sun 14:43] 🔚

Category ( \mathcal{C} ), ( 〈E, \overrightarrow{\eta}, \overrightarrow{\mu}〉 ) monad over ( \mathcal{C} ).

Kleisli category ( \mathcal{C}_{T} ) of ( \mathcal{C} ):

( \mathrm{Obj}(\mathcal{C}{T}) \ = \ \mathrm{Obj}(\mathcal{C}) ) ( \mathrm{Hom}{\mathcal{C}{T}}(x,y) \ = \ \mathrm{Hom}{\mathcal{C}}(x,E(y)) )

****** <<>> :properties: :ID: 6b44c29f-6e27-4ff3-bd40-d7f6ad97121b 🔚

******* <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: dda1f03b-a476-48eb-894b-06d18733297b :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:00] 🔚

Wraps data in the Identity constructor.

Useful: Creates monads from monad transformers.

Bind: Applies internal value to the bound function.

Code: (see: coerce)

#+begin_src haskell newtype Identity a = Identity { runIdentity :: a }

instance Functor Identity where fmap = coerce

instance Applicative Identity where pure = Identity (<*>) = coerce

instance Monad Identity where m >>= k = k (runIdentity m) #+end_src

Example: #+begin_src haskell -- derive the State monad using the StateT monad transformer type State s a = StateT s Identity a #+end_src

******* <<>> :drill: :properties: :ID: dce21b9b-4b6a-4aea-8cbe-06a84f8c1c0f 🔚

Something that may not be or not return a result. Any lookups into the real world, database querries.

Bind: =Nothing= input gives =Nothing= output, =Just x= input uses =x= as input to the bound function.

When some computation results in Nothing - drops the chain of computations and returns Nothing.

Zero: Nothing Plus: result in first occurence of Just else Nothing.

Code:

#+begin_src haskell data Maybe a = Nothing | Just a

instance Monad Maybe where return = Just fail = Nothing Nothing >>= _ = Nothing (Just x) >>= f = f x

instance MonadPlus Maybe where mzero = Nothing Nothing mplus x = x x mplus _ = x #+end_src

Example: Given 3 dictionaries:

  1. Full names to email addresses,
  2. Nicknames to email addresses,
  3. Email addresses to email preferences.

Create a function that finds a person's email preferences based on either a full name or a nickname.

#+begin_src haskell data MailPref = HTML | Plain data MailSystem = ...

getMailPrefs :: MailSystem -> String -> Maybe MailPref getMailPrefs sys name = do let nameDB = fullNameDB sys nickDB = nickNameDB sys prefDB = prefsDB sys addr <- (lookup name nameDB) mplus (lookup name nickDB) lookup addr prefDB #+end_src

******* <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 6e6e76cd-71f0-4c01-8c1b-8cde9026a30a :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:50] 🔚

When computation results in =Left= - drops other computations & returns the recieved =Left=.

******* <<>> :drill: SCHT: <2020-06-17 Wed> :properties: :ID: 860961d0-78d3-4fdd-9845-3e1a2b800cf7 :DRILL_LAST_INTERVAL: 80.2492 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.125 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:59] 🔚

Someting that can fail, throw exceptions.

The failure process records the description of a failure. Bind function uses successful values as input to the bound function, and passes failure information on without executing the bound function.

Useful: Composing functions that can fail. Handle exceptions, crate error handling structure.

Zero: empty error. Plus: if first argument failed then execute second argument.

******* <<>> :drill: :properties: :ID: 1645e551-ef15-4415-9a40-8d4a7066ff0b 🔚

Computations which may return 0 or more possible results.

Bind: The bound function is applied to all possible values in the input list and the resulting lists are concatenated into list of all possible results.

Useful: Building computations from sequences of non-deterministic operations.

Zero: [] Plus: (++)

******** /*/

<<<[] monad>>>

******* <<>> :drill: SCHT: <2020-07-20 Mon> :properties: :ID: fff0059d-0484-41ee-b7c0-e91360c9ff62 :DRILL_LAST_INTERVAL: 149.727 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:16] 🔚

Creates a read-only shared environment for computations.

The =pure= function ignores the environment, while >>= passes the inherited environment to both subcomputations.

Today it is defined though ReaderT transformer:

#+begin_src haskell type Reader r = ReaderT r Identity -- equivalent to ((->) e), (e ->) #+end_src

Old definition was:

#+begin_src haskell newtype Reader e a = Reader { runReader :: (e -> a) } #+end_src

For =(e ->)=:

  • Functor is =(.)= #+begin_src haskell fmap :: (b -> c) -> (a -> b) -> a -> c fmap = (.) #+end_src

  • Applicative:

    • =pure= is =const= #+begin_src haskell pure :: a -> b -> a pure x _ = x #+end_src
    • =(<>)= is: #+begin_src haskell (<>) :: (a -> b -> c) -> (a -> b) -> a -> c (<*>) f g = \a -> f a (g a) #+end_src
  • Monad: #+begin_src haskell (>>=) :: (a -> b) -> (b -> a -> c) -> a -> c (>>=) m k = Reader $ \r -> runReader (k (runReader m r)) r

join :: (e -> e -> a) -> e -> a join f x = f x x #+end_src

#+begin_src haskell runReader :: Reader r a -- the Reader to run -> r -- an initial environment -> a -- extracted final value #+end_src

Usage:

#+begin_src haskell data Env = ...

createEnv :: IO Env createEnv = ...

f :: Reader Env a f = do a <- g pure a

g :: Reader Env a g = do env <- ask -- "Open the environment namespace into env" a <- h env -- give env to h pure a

h :: Env -> a ... -- use env and produce the result

main :: IO () main = do env <- createEnv a = runReader g env ... #+end_src

In Haskell under normal circumstances impure functions should not directy call impure functions. =h= is an impure function, and =createEnv= is impure function, so they should have intermediary.

******* <<>> :drill: :properties: :ID: fe69112e-4524-4ff4-b100-ac229efe5849 🔚

Computations which accumulate monoid data to a shared Haskell storage. So /*/ is parametrized by monoidal type.

Accumulator is maintained separately from the returned values.

Shared value modified through Writer monad methods.

/*/ frees creator and code from manually keeping the track of accumulation.

Bind: The bound function is applied to the input value, bound function allowed to =<>= to the accumulator.

#+begin_src haskell type Writer r = WriterT r Identity #+end_src

Example: #+begin_src haskell f :: Monoid b => a -> (a, b) f a = if condition then runWriter $ g a else runWriter do a1 <- h a pure a1

g :: Monoid b => Writer b a g a = do tell value1 -- accumulator <> value1 pure a -- observe that accumulator stored inside monad -- and only a main value needs to be returned.

h :: Monoid b => Writer b a h a = do tell value2 -- accumulator <> value pure a #+end_src

#+begin_src haskell runWriter :: Writer w a -> (a, w) -- Unwrap a writer computation -- as a (result, accumulator) pair. -- The inverse of writer. #+end_src

=WriterT=, =Writer= unnecessarily keeps the entire logs in the memory. Use =fast-logger= for logging.

******* <<>> :drill: :properties: :ID: 800e0e70-a69e-48e9-8592-426f5dd910cf 🔚

Computations that pass-over a state.

The bound function is applied to the input value to produce a state transition function which is applied to the input state.

Pure functional language cannot update values in place because it violates referential transparency.

#+begin_src haskell type State s = StateT s Identity #+end_src

Binding copies and transforms the state parameter through the sequence of the bound functions so that the same state storage is never used twice. Overall this gives the illusion of in-place update to the programmer and in the code, while in fact the autogenerated transition functions handle the state changes.

Example type: =State st a=

=State= describes functions that consume a state and produce a tuple of result and an updated state.

Monad manages the state with the next process:

#+caption: Process of passing the state inside State monad #+name: img--state-monad #+downloaded: https://upload.wikimedia.org/wikipedia/commons/8/87/State_Monad_Bind.svg @ 2020-03-11 18:28:08 #+attr_latex: :width 1\linewidth [[./images/StateMonadProcess.svg]]

Where:

  • f - processsor making function
  • pA, pAB, pB - state processors
  • sN - states
  • vN - values Bind with a processor making function from state procesor (pA) creates a new state processor (pAB). The wrapping and unwrapping by State/runState is implicit.

****** <<>> :drill: :properties: :ID: 1357bbcf-fbf7-4607-9044-4d6e26c513d5 🔚

/*/ is a practical solution to the current functional programming situation that generally monads do not have composition ability. In other words many monads can not be composed.

/*/ is a special monad that extends other monad with extra funcitonality, it is a convinience mechanism, the functionality itself always can be developed in some other way. Sometimes transformers can make things way harder (especially profound for concurrency ([[https://www.youtube.com/watch?v=KZIN9f9rI34][Michael Snoyman - Monad Transformer State]])) then other ways of implementation, especially when transformers hold some structure information (state-like information, in ExceptT, StateT)

Monad is not closed under compostion. Composition of monadic types does not always results in monadic type.

Basic case: during implementation of monadic composition, as a result type =m T m a= arises, which does not allow =join= transformation for the =m= monadic layers or to have a regular unit transformation.

Monads that are // are the monads that have own properties as also ability to compose with any other monadand extend it with own properties. // use their implementation to solve the compostion type layering and allow to attach desirable property to result.

// solve monad composition and type layering by using own structure and information about itself. It is often that process involves a catamorphism of a // type layer.

Transformers have a light wrapper around the data that tags the modification with this transformer.

In type signatures of transformers =*T m= - =m= is already an extended monad, so =*T= is just a wrapper to point that out.

Main monadic structure =m= is wrapped around the internal data (core is =a=). The structure that corresponds to the transformer creation properties (if it emitted by ( \eta ) of a transformer), goes into =m= . Open parameters go external to the =m=.

#+begin_src haskell newtype ExceptT e m a = ExceptT { runExceptT :: m (Either e a) }

newtype MaybeT m a = MaybeT { runMaybeT :: m (Maybe a) }

newtype ReaderT r m a = ReaderT { runReaderT :: r -> m a } #+end_src

This has an effect that on stacking monad transformers, =m= becomes monad stack, and every next transformer injects the transformer creation-specific properies ( \eta ) inside the stack, so out-most transformer has inner-most structure. Base monad is structurally the outermost.

******* <<>> :drill: :properties: :ID: a339250b-4cbc-4c45-b9f8-092f8c166f8f 🔚

/*/ extends monads by injecting Maybe layer underneath monad, and processing that structure: #+begin_src haskell newtype MaybeT m a = MaybeT { runMaybeT :: m (Maybe a) } #+end_src

******* <<>> :drill: :properties: :ID: 4c9b6c87-9795-4be9-ba24-3b6ea86e479a 🔚

/*/ extends monads by injecting Either layer underneath monad, and processing that structure:

#+begin_src haskell newtype EitherT e m a = EitherT { runEitherT :: m (Either e a) } #+end_src

=EitherT= of =either= package gets replaced by =ExceptT= of =transformers= or =mtl= packages.

******** /*/ <<>>

******* <<>> :drill: :properties: :ID: 90fe2f52-5a12-42aa-b622-8dfca4934998 🔚

Definition: #+begin_src haskell newtype ReaderT r m a = ReaderT { runReaderT :: r -> m a } #+end_src

/*/ functions: input monad =m a=, out: =m a= wrapped it in a free-variable =r= (partially applied function). That allows to use transformed =m a=, now it requires and can use the =r= passed environment.

To create a Reader monad:

#+begin_src haskell type Reader r = ReaderT r Identity #+end_src

******* <<>> type class :drill: :properties: :ID: b09785c6-fd74-4096-8329-9908b7864d61 🔚

Allows to lift monadic actions into a larger context in a neutral way.

=pure= takes a parametric type and embodies it into constructed structure (talking of monad transformers - structure of the stacked monads).

=lift= takes monad and extends it with a transformer.

In fact, for monad transformers - =lift= is a last stage of the =pure=, it follows from the lift property.

Method: #+begin_src haskell lift :: Monad m => m a -> t m a #+end_src Lift a computation from the argument monad to the constructed monad.

Neutral means: #+begin_src haskell lift . return = return

lift (m >>= f) = lift m >>= (lift . f) #+end_src

The general pattern with MonadTrans instances is that it is usually lifts the injection of the known structure of transformer over some Monad.

lift embeds one monadic action into monad transformer.

The difference between pure, lift and MaybeT contructor becomes clearer if you look at the types:

Example, for =MaybeT IO a=: #+begin_src haskell pure :: a -> MaybeT IO a lift :: IO a -> MaybeT IO a MaybeT :: IO (Maybe a) -> MaybeT IO a

x = (undefined :: IO a)

:t (pure x) (pure x) :: Applicative t => t (IO a) -- t recieves one argument of product type :t (pure x :: MaybeT IO a) -- Expected type: MaybeT IO a1 -- Actual type: MaybeT IO (IO a0)

-- While the real type would be :t (pure x :: MaybeT IO (IO a)) (pure x :: MaybeT IO (IO a)) :: MaybeT IO (IO a) -- This goes into a conflict of what type&kind (* -> *) transformer constructor -- awaits, and m (m a) is a layering we not interested in.

:t (lift x) (lift x) :: MonadTrans t => t IO a -- result is a proper expected product type

-- To belabour :t (lift x :: MaybeT IO a) (lift x) :: MonadTrans t => t IO a -- result is a proper expected product type #+end_src

=lift= is a natural transformation ( \eta ) from an Identity monad (functor) with other monad as content into transformer monad (functor), with the preservation of the conteined monad: #+begin_src haskell -- Abstract monads with content as parameters. Define '~>' as a family of -- morphisms that translate one functor into another (natural transformation) type f ~> g = forall x. f x -> g x -- follows lift :: m ~> t m #+end_src

********* <<>> type class :drill: :properties: :ID: af50ee71-0b5d-4c55-912b-7ffdfdc217a1 🔚

/*/ - allows to lift IO action until reaching the IO monad layer at the top of the =Monad= stack (which is allways in the Haskell code that does IO).

#+begin_src haskell class (Monad m) => MonadIO m where liftIO :: IO a -> m a #+end_src

=liftIO= properties: #+begin_src haskell liftIO . pure = pure

liftIO (m >>= f) = liftIO m >>= (liftIO . f) #+end_src

Which is identical properties to MonadTrans =lift=.

Since =lift= is one step, and liftIO all steps - all steps defined in terms of one step and all other steps, so the most frequent implementation is self-recursive =lift . liftIO=:

#+begin_src haskell liftIO ioa = lift $ liftIO ioa #+end_src

********** /*/

<<>>

***** <<>> :drill: SCHT: <2020-06-30 Tue> :properties: :ID: b74a4135-6cc8-4944-9ba4-542b27c83dbe :DRILL_LAST_INTERVAL: 188.0364 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.7 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 11:58] 🔚

Monoid over applicative. Has left catch property.

Allows to run simultaneously several instances of a computation (or computations) and from them yeld one result by property from =(<|>) :: Type -> Type -> Type=.

Minimal complete definition: #+begin_src haskell empty :: f a -- The identity element of <|> (<|>) :: f a -> f a -> f a -- Associative binary operation #+end_src

Additional functions some and many defined (automatically derived) as the least solutions to the equations: #+begin_src haskell some v = (:) <$> v <> many v many v = some v <|> pure [] -- => some v = (:) <$> v <> $ some v <|> pure [] #+end_src

#+begin_src haskell some :: f a -> f [a] -- One or more. Keep trying applying f to a until it succeeds at least once, and then keep doing it until it fails. more :: f a -> f [a] -- Zero or more. Apply f to a as many times as you can until failure. #+end_src

So there in the process should be found a definitive case of failure termination rule or otherwise process would never terminate.

To start understand intuitive difference: #+begin_src haskell

some Nothing Nothing many Nothing Just [] #+end_src

Perhaps it helps to see how some would be written with monadic do syntax:

#+begin_src haskell some f = do x <- f xs <- many f return (x:xs) #+end_src

So some f runs f once, then "many" times, and conses the results. many f runs f "some" times, or "alternative'ly" just returns the empty list. The idea is that they both run f as often as possible until it "fails", and after that - compose the list of results. The difference is that some f fails if f fails immediately, while many f will succeed and "return" the empty list. But what this all means exactly depends on how <|> is defined.

Is it only useful for parsing? Let's see what it does for the instances in base: Maybe, [] and STM.

First Maybe. Nothing means failure, so some Nothing fails as well and evaluates to Nothing while many Nothing succeeds and evaluates to Just []. Both some (Just ()) and many (Just ()) never return, because Just () never fails! In a sense they evaluate to Just (repeat ()).

For lists, [] means failure, so some [] evaluates to [] (no answers) while many [] evaluates to [[]] (there's one answer and it is the empty list). Again some [()] and many [()] don't return. Expanding the instances, some [()] means fmap (():) (many [()]) and many [()] means some [()] ++ [[]], so you could say that many [()] is the same as tails (repeat ()).

For STM, failure means that the transaction has to be retried. So some retry will retry itself, while many retry will simply return the empty list. some f and many f will run f repeatedly until it retries. I'm not sure if this is useful thing, but I'm guessing it isn't.

So, for Maybe, [] and STM many and some don't seem to be that useful. It is only useful if the applicative has some kind of state that makes failure increasingly likely when running the same thing over and over. For parsers this is the input which is shrinking with every successful match.

****** /*/

<<>>

**** <<>> :drill: :properties: :ID: 8bafa7f0-72b2-4706-a623-69c5f09ab964 🔚

Functors between monoidal categories that preserves monoidal structure.

**** =$>= :drill: :properties: :ID: b2e2a3bf-d31c-40cb-a7da-9f389190a773 🔚

Get & set a value inside Functor.

***** /*/

=<$=

**** <<>> :drill: SCHT: <2020-06-21 Sun> :properties: :ID: 3419635e-4b4a-4193-b50c-0e6ac3bf269d :DRILL_LAST_INTERVAL: 60.2253 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.429 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:33] 🔚

Functor that takes as an argument the product of types.

Or if combine it with product - accepts multiple argumets, so from that constructs "source" product category (Cartesian product) of categories, and realizes a functor from product category to target category.

Concept works over /N/ type arguments instead of one.

Generalizes the concept of functor between categories, canonical morphisms between multicategories.

Any product or sum in a Cartesian category is a /*/.

In Haskell there is only one category, Hask, so in Haskell /*/ is still endofunctor ( (Hask \times Hask) \rightarrow Hask \Rightarrow | (Hask \times Hask) \equiv Hask | \Rightarrow Hask \rightarrow Hask ).

Code definition: #+begin_src haskell class Bifunctor f where bimap :: (a -> a') -> (b -> b') -> f a b -> f a' b' bimap f g = first f . second g first :: (a -> a') -> f a b -> f a' b first f = bimap f id second :: (b -> b') -> f a b -> f a b' second = bimap id #+end_src

***** /*/ <<>>

*** <<>> :drill: :properties: :ID: dc1a0e79-c4bc-4c46-a9d7-84bb4f1d6a2e 🔚

Category of Haskell where objects are types and morphisms are functions.

It is a hypothetical category at the moment, since undefined and bottom values break the theory, is not Cartesian closed, it does not have sums, products, or initial object, =()= is not a terminal object, monad identities fail for almost all instances of the Monad class.

That is why Haskell developers think in subset of Haskell where types do not have bottom values. This only includes functions that terminate, and typically only finite values. The corresponding category has the expected initial and terminal objects, sums and products, and instances of Functor and Monad really are endofunctors and monads.

Hask contains subcategories, like Lst containing only list types.

Haskell and Category concepts:

  • Things that take a type and return another type are type constructors.
  • Things that take a function and return another function are higher-order functions.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-11-21 Sat> :properties: :ID: 8d0a8700-c48a-4195-8bd2-52a1b3866d76 :DRILL_LAST_INTERVAL: 224.1607 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.04 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-11 Sat 21:17] 🔚

\textgreek{μορφή} /morphe/ form

Arrow between two objects inside a category.

Morphism can be anything.

Morphism is a generalization (( f(xy) \equiv f(x) \diamond f(y) )) of homomorphism (( f(xy) \equiv f(x) * f(y) )).

Since general morphisms not so much often ment and discussed - under morphism people almost always really mean the meaning of homomorphism-like properties, hense they discuss the algebraic structures (types) and homomorphisms between them.

In most usage, on a level under the objects: /*/ is most often means a map (relation) that translates from one mathematical structure (that source object represents) to another (that target object represents) (that is called (somewhat, somehow) "structure-preserving", but that phrase still means that translation can be lossy and irrevertable, so it is only bear reassemblence of preservation), and in the end the morphism can be anything and not hold to this conditions.

Morphism needs to correspond to function requirements to be it.

**** /*/

<<>> <<>> <<>>

**** <<>> :drill: SCHT: <2020-05-12 Tue> :properties: :ID: f2e565b1-80d9-4d83-96c7-ba3e17440b75 :DRILL_LAST_INTERVAL: 139.0649 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 9 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.667 :DRILL_EASE: 2.48 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:37] 🔚

\textgreek{ὁμός} /homos/ same (was chosen becouse of initial Anglish mistranslation to "similar")

\textgreek{μορφή} /morphe/ form

similar form

/*/ map between two algebraic structures of the same type that preserves the operations.

( f(x*y) \equiv f(x) * f(y) ), where for ( f^{A \to B} ) - ( A, B ) are sets with additonal algebraic structures (algebras) that include operation \ast; ( x,\ y ) are elements of the set ( B ).

/*/ sends identity morphisms to identity morphisms and inverses to inverses.

The concept of /*/ has been generalized under the name of morphism to many structures that either do not have an underlying set, or are not algebraic, or do not preserve the operation.

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: 8581e216-8d9d-479f-a58d-bd04882b5131 🔚

Identity morphism - or simply identity: ( x \in C : ; id_{x}=1_{x} : x \to x ) Composed with other morphism gives same morphism.

Corresponds to Reflexivity and Automorphism.

***** <<>> :drill: SCHT: <2020-08-08 Sat> :properties: :ID: ed19af1f-09b7-43a0-82d2-ab30e198ae54 :DRILL_LAST_INTERVAL: 103.2795 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:05] 🔚

Identity only possible with morphism. See Identity morphism.

There is also distinct Zero value.

****** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 6f4649d2-e99e-4424-b575-0c2121a7569c :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

( P(e,a)=P(a,e)=a \ | \ \exists e \in S, \forall a \in S ) ( P() ) is commutative.

Predicate

****** <<>> :drill: SCHT: <2020-10-24 Sat> :properties: :ID: 1f08ecdc-8177-4f95-98c6-0c8858c54bf0 :DRILL_LAST_INTERVAL: 228.9343 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:58] 🔚

( \exists e \in S, \forall a \in S : ; P(e,a)=a )

Predicate

****** <<>> :drill: SCHT: <2020-10-10 Sat> :properties: :ID: 3ed093c4-db04-4e82-91b4-b01398b39e84 :DRILL_LAST_INTERVAL: 261.4179 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-01-23 Thu 22:57] 🔚

( P(a,e)=a ; | ; \exists e \in S, \forall a \in S )

Predicate

***** <<>> :drill: :properties: :ID: c687793c-ad12-435b-8326-9c335ebbf9ea 🔚

Return itself. (\ x.x) #+begin_src haskell id :: a -> a #+end_src

**** <<>> :drill: :properties: :ID: 18290d34-893c-42f0-bf4a-bb31f5e97711 🔚

\textgreek{μονο} /mono/ only

\textgreek{μορφή} /morphe/ form

Maps one to one (uniquely), so invertable (always has inverse morphism), so preserves the information/structure. Domain can be equal or less to the codomain.

( f^{X \to Y}, \ \forall x \in X , \exists! y=f(x) \vDash f(x) \equiv f_{mono}(x) ) - from homomorphism context ( f_{mono} \circ g1 = f_{mono} \circ g2 \ \vDash \ g1 \equiv g2 ) - from general morphism context Thus /*/ is left canselable.

If /*/ is a function - it is injective. Initial set of /f/ is fully uniquely mapped onto the image of /f/.

***** /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2021-05-19 Wed> :properties: :ID: 3729d963-3775-4715-99d7-d14bc30750c0 :DRILL_LAST_INTERVAL: 286.6135 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.667 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:06] 🔚

\textgreek{επι} /epi/ on, over

\textgreek{μορφή} /morphe/ form

/*/ is end-equating morphism. Since epimorphism covers target fully - \forall morphisms composed to its end (target) are fully active in composition and so fully comparable between each other.

Term end-equating is more direct, easy and clear then classic =right-canselable=. Since "right" is collision between direction of composition (right to left) (and sometimes composition gets writted left to right), way it is drawn (left to right), and written ( C \to D ) (left to right).

( f^{X \to Y}, \forall y \in Y , \exists f(x) \vDash f(x) \equiv f_{epi}(x) ) - from homomorphism context ( g_1 \circ f_{epi} = g_2 \circ f_{epi} \Rightarrow ; g_1 \equiv g_2 ) - from general morphism context

In Set category if /*/ is a function - it is surjective (image of it fully uses codomain) Codomain is a called a projection of the domain.

/*/ fully maps into the target.

***** /*/

<<>> <<>>

**** <<>> :drill: :properties: :ID: 4a0635c3-9512-443a-8497-3c259032de55 🔚

\textgreek{ἴσος} /isos/ equal

\textgreek{μορφή} /morphe/ form

Not equal, but equal for current intents and purposes. Morphism that has inverse. Almost equal, but not quite: =(Integer, Bool)= & =(Bool, Integer)= - but can be transformed losslessly into one another.

Bijective homomorphism is also isomorphism.

( f^{-1, b \to a} \circ f^{a \to b} \equiv 1^a, ; f^{a \to b} \circ f^{-1, b \to a} \equiv 1^b )

2 reasons for non-isomorphism:

  • function at least ones collapses a values of domain into one value in codomain
  • image (of a function in codomain) does not fill-in codomain. Then isomorphism can exists for image but not whole codomain.

Categories are isomorphic if there ( R \circ L = ID )

***** /*/

<<>> <<>>

***** <<>> :drill: SCHT: <2020-05-01 Fri> :PROPERTIES: :ID: 9b9057db-929d-4239-adf9-87c3ae5ee0c5 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] :END:

Holds up to isomorphism. (upon the transformation can be used as the same)

**** <<>> :drill: SCHT: <2021-07-02 Fri> :properties: :ID: 2fd058e4-4b8a-451e-9760-0275b2741331 :DRILL_LAST_INTERVAL: 330.5197 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:08] 🔚

\textgreek{ενδο} /endo/ internal

\textgreek{μορφή} /morphe/ form

Arrow from object to itself. Endomorphism forms a monoid (object exists and category requirements already in place).

***** <<>> :drill: SCHT: <2020-06-28 Sun> :properties: :ID: fc880a3b-0339-4a6f-bffc-5d6c4c4eb1ae :DRILL_LAST_INTERVAL: 63.199 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.417 :DRILL_EASE: 2.0 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:53] 🔚

\textgreek{αυτο} /auto/ self

\textgreek{μορφή} /form/ form

Isomorphic endomorphism.

Corresponds to identity, reflexivity, permutation.

****** /*/

<<>> <<>>

***** /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2020-06-24 Wed> :properties: :ID: 3af3d5fd-449a-45e7-ac99-0cca150f0523 :DRILL_LAST_INTERVAL: 135.7197 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-08 Sat 23:03] 🔚

\textgreek{κατά} /kata/ downward

\textgreek{μορφή} /morphe/ form

Unique arrow from an initial algebra structure into different algebra structure.

/*/ in FP is a generalization folding, deconstruction of a data structure into more primitive data structure using a functor F-algebra structure.

// reduces the structure to a lower level structure. // creates a projection of a structure to a lower level structure.

***** /*/

<<>> <<>>

***** <<>> :drill: :properties: :ID: a1502d89-017c-41ce-ab89-a8b56f93489b 🔚

#+caption: Catamorphism properties in Haskell #+name: tab--catamorphism-property-in-haskell #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Rule name | Haskell | |--------------+----------------------------------------------------------------| | cata-cancel | =cata phi . InF = phi . fmap (cata phi)= | | cata-refl | =cata InF = id= | | cata-fusion | =f . phi = phi . fmap f => f . cata phi = cata phi= | | cata-compose | =eps :: f :~> g => cata phi . cata (In . eps) = cata (phi . eps)= |

****** <<>> :drill: :properties: :ID: 05e166e2-23f3-4e1a-9e6e-fd9ce910b785 🔚

catamorphism ( \circ ) anamorphism

Expanding and collapsing the structure.

******* /*/

<<>> <<>>

***** <<>> :drill: SCHT: <2020-07-31 Fri> :properties: :ID: 731c7b76-f46b-478f-87c0-4c24cb3f8c5c :DRILL_LAST_INTERVAL: 96.0342 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 5 :DRILL_AVERAGE_QUALITY: 2.917 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:52] 🔚

Generalizes unfold.

Dual concept to catamorphism.

Increases the structure.

Morphism from a coalgebra to the final coalgebra for that endofunctor.

Is a function that generates a sequence by repeated application of the function to its previous result.

****** /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2021-03-02 Tue> :properties: :ID: 44aee181-f629-4047-abf5-f2ae438f2063 :DRILL_LAST_INTERVAL: 324.5411 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.571 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-11 Sat 20:36] 🔚

Kernel of a homomorphism is a number that measures the degree homomorphism fails to meet injectivity (AKA be monomorphic). It is a number of domain elements that fail injectivity:

  • elements not included into morphism
  • elements that collapse into one element in codomain thou Kernel ( [ x | x \leftarrow 0 || x \ge 2 ] ).

Denotation: ( \operatorname{ker}T = { \mathbf{v} \in V:T(\mathbf{v}) = \mathbf{0}_{W} } ).

***** <<>> :drill: SCHT: <2020-11-20 Fri> :properties: :ID: e77c8ade-6668-48e3-aeae-3bf1209e31d8 :DRILL_LAST_INTERVAL: 107.43 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 11 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.273 :DRILL_EASE: 2.1 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:19] 🔚

Morphism of elements from the kernel. Complementary morphism of elements that make main morphism not monomorphic.

*** <<>> :drill: SCHT: <2021-07-02 Fri> :properties: :ID: c6c7f178-7b69-4154-83ed-34de9b102193 :DRILL_LAST_INTERVAL: 424.7199 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-05-03 Sun 13:08] 🔚

Category in which objects are sets, morphisms are functions.

Denotation: ( Set )

*** <<>> :drill: :properties: :ID: 8591d1eb-0f0f-4f0e-b46b-05a4262646da 🔚

Roughly /*/ is: #+begin_src haskell trans :: F a -> G a #+end_src , while =a= is polymorphic variable.

Naturality condition: ( \forall \ a \ \exists \ (F \ a \to G \ a) ), or , analogous to parametric polymorphism in functions. Since // in a category, stating ( \forall (F \ a \to G \ a) ) Naturality condition means that all morphisms that take part in homotopy of source functor to target functor must exist, and that is the same, diagrams that take part in transformation, should commute, and different paths brins same result: if ( \alpha ) - natural transformation, ( \alpha_{a} ) natural transformation component - ( G \ f \circ \alpha_{a} = \alpha_{b} \circ F \ f ). Since // are just a type of parametric polymorphic function - they can compose.

// (( \overrightarrow{\eta}^{\mathcal{D}} )) is transforming : ( \overrightarrow{\eta}^{\mathcal{D}} \circ F^{\mathcal{C \to D}} = G^{\mathcal{C \to D}} ). // abstraction creates higher-language of Category theory, allowing to talk about the composition and transformation of complex entities.

It is a process of transforming ( F^{\mathcal{C \to D}} ) into ( G^{\mathcal{C \to D}} ) using existing morphisms in target category ( \mathcal{D} ).

Since it uses morphisms - it is structure-preserving transformation of one functor into another. Iy mostly a lossy transformation. Only existing morphisms cab make it exist.

Existence of /*/ between two functors can be seen as some relation.

Can be observed to be a "morphism of functors", especially in functor category. /*/ by ( \overrightarrow{\eta}^{\mathcal{D}}{y^{\mathcal{C}}}(\overrightarrow{(x,y)}^{\mathcal{C}}) \circ F^{\mathcal{C \to D}}(\overrightarrow{(x,y)}^{\mathcal{C}}) = G^{\mathcal{C \to D}}(\overrightarrow{(x,y)}^{\mathcal{C}}) \circ \overrightarrow{\eta}^{\mathcal{D}}{x^{\mathcal{C}}}(\overrightarrow{(x,y)}^{\mathcal{C}}) ), often written short ( \overrightarrow{\eta}{b} \circ F(\overrightarrow{f}) = G(\overrightarrow{f}) \circ \overrightarrow{\eta}{a} ). Notice that the ( \overrightarrow{\eta}^{\mathcal{D}}_{x^{\mathcal{C}}}(\overrightarrow{(x,y)}^{\mathcal{C}}) ) depends on objects&morphisms of ( \mathcal{C} ).

In words: // depends on ( F ) and ( G ) functors, ability of ( D ) morphisms to do a homotopy of ( F ) to ( G ), and //:

  • for every object in ( \mathcal{C} ) picks natural transformation component in ( \mathcal{D} ).
  • for every morphism in ( \mathcal{C} ) picks the commuting diagram in ( \mathcal{D} ), called <<>>.

Also see: Natural transformation in Haskell

Knowledge of /*/ forms a 2-category.

Can be composed

  • "vertically":

\begin{tikzcd} a \arrow[rrrr, "F", bend left] \arrow[rrrr, "G", bend right] \arrow[rrrr, "H", bend right=60] & & \Downarrow{\alpha} & & b \ & & \Downarrow{\beta} \end{tikzcd}

\begin{tikzcd} a \arrow[rrrr, "F", bend left] \arrow[rrrr, "H", bend right=49] & & \Downarrow{\beta\circ\alpha} & & b \end{tikzcd}

  • "horizontally" ("Godement product"):

\begin{tikzcd} a \arrow[rr, "F_{1}", bend left] \arrow[rr, "G_{1}", bend right] & \Downarrow{\alpha} & b \arrow[rr, "F_{2}", bend left] \arrow[rr, "G_{2}", bend right] & \Downarrow{\beta} & c \end{tikzcd}

\begin{tikzcd} a \arrow[rr, "F_{2} \circ F_{1}", bend left] \arrow[rr, "G_{2} \circ G_{1}", bend right] & \Downarrow{\beta * \alpha} & c \end{tikzcd}

Vertical and horizontal compositions can be done in any order, they abide the exchange property.

**** /*/

<<>> <<>> <<>>

**** <<>> :drill: :properties: :ID: d71f0216-0581-481b-a941-7974ec27ee2c 🔚

( \overrightarrow{\eta}^{\mathcal{D}}(x) = F^{\mathcal{D}}(x) \to G^{\mathcal{D}}(x) \ | \ x \in \mathcal{C} )

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-06-23 Tue> :properties: :ID: 60c3a507-2342-4bad-bd8c-f16adb4e9fbb :DRILL_LAST_INTERVAL: 57.5224 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:51] 🔚

Family of parametric polymorphism functions between endofunctors.

In Hask is ( F \ a \to G \ a ). Can be analogued to repackaging data into another container, never modifies the object content, it only if - can delete it, because operation is lossy.

Can be sees as ortogonal to functors.

**** <<>> :drill: :PROPERTIES: :ID: af015bd3-82ca-4dd4-95f5-314e93d6fa29 :END:

Category where:

| | Part | Is | # | |---+------------+--------------------------------------------+--------| | * | object | category | 0-cell | | \Rightarrow | morphism | functor | 1-cell | | \Rightarrow | 2-morphism | natural transformation, morphisms homotopy | 2-cell |

\begin{tikzcd} a \arrow[rrrr, "F", bend left] \arrow[rrrr, "G", bend right] & & \Downarrow{nt} & & b \end{tikzcd}

Is Cartesian closed category.

***** /*/ <<>> <<<2-category>>>

***** Bicategory :drill: :PROPERTIES: :ID: 61463bc0-6e2f-434b-a2fc-5595f0919fb8 :END:

2-category that is enriched and lax.

For handling relaxed associativity - introduces associator, and for identity l -eft/right unitor.

Forming from bicategories higher categories by stacking levels of abstraction of such categories - leads to explosion of special cases, differences of every level, and so overall difficulties.

Stacking groupoids (category in which are morphisms are invertable) is much more homogenous up to infinity, and forms base of the homotopy type theory.

*** <<>> :drill: SCHT: <2021-03-05 Fri> :properties: :ID: 942d9234-d549-46a3-b051-ef1ac73244ad :DRILL_LAST_INTERVAL: 212.0697 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.285 :DRILL_EASE: 2.04 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:15] 🔚

Category duality behaves like a logical inverse.

Inverse ( \mathcal{C} ) = ( \mathcal{C}^{op} ) - inverts the direction of morphisms.

Composition accordingly changes to the morphisms: ( (g \circ f)^{op} = f^{op} \circ g^{op} )

Any statement in the terms of ( \mathcal{C} ) in ( \mathcal{C}^{op} ) has the dual - the logical inverse that is true in ( \mathcal {C}^{op} ) terms.

Opposite preserves properties:

  • products: ( (\mathcal{C} \times \mathcal{D})^{op} \cong \mathcal{C}^{op} \times \mathcal{D}^{op} )

  • functors: ( (F^{\mathcal{C} \to \mathcal{D}})^{op} \cong F^{\mathcal{C}^{op} \to \mathcal{D}^{op}} )

  • slices: ( (\mathcal{F} \downarrow \mathcal{G})^{op} \cong (\mathcal{G}^{op} \downarrow \mathcal{F}^{op}) )

****** /*/

<<>> <<>> <<>> <<>> <<>> <<>>

**** <<>> :drill: :properties: :ID: a48247a2-f844-4c4e-9f40-e8cac61bb209 🔚

Structures that are dual (in the category-theoretic sense of reversing arrows) to unital associative algebras. Every coalgebra, by vector space duality, reversing arrows - gives rise to an algebra. In finite dimensions, this duality goes in both directions. In infinite - it should be determined.

*** <<>> :drill: :properties: :ID: 130fbaa3-d9b8-43e6-8c29-b448b505d9d0 🔚

\forall Hom sets contain zero or one morphism.

( f \equiv g \ | \ \forall x,y \ \forall f,g: x \to y )

A proset (preordered set).

**** /*/

<<>> <<>> <<>> <<>>

*** <<>> :drill: :properties: :ID: ca1088d3-dae2-4621-84e0-a6ce61222e09 🔚

Establishes equality in morphisms that have same source and target.

Draws the morphisms that are: ( f = g \Rightarrow {f, y}: X \to Y )

**** /*/

<<>> <<>>

*** <<>> :drill: :properties: :ID: 5341cb9e-0f97-4ab2-9833-2bca2c72fb18 🔚

Algorythm of constructing definitions in Category theory. Specially good to translate properties/definitions from other theories (Set theory) to Categories.

Method:

  1. Define a pattern that you defining.
  2. Establish ranking for pattern matches.
  3. The top of ranking, the best match or set of matches - is the thing you was looking for. Matches are isomorphic for defined rules.

/*/ uses Yoneda lemma, and as such constructions are defined until isomorphism, and so isomorphic betweem each-other.

**** /*/

<<>>

*** <<>> :drill: :properties: :ID: 21499e97-b28f-4377-9929-ed3d5d8e24f3 🔚

Universal construction:

\begin{matrix} && c^{\prime} && \ & {}^p\swarrow\phantom{{}^{p}} & {\tiny \phantom{!}}\downarrow{\tiny !} & \phantom{{}^q}\searrow^q& \ a & \underset{\pi_a}{\leftarrow} & c & \underset{\pi_b}{\rightarrow} & b \end{matrix}

Pattern: ( p: c \to a, \ q: c \to b )

Ranking: ( \max{\sum^{\forall}{(!: c\prime \to c \ | \ p\prime = p \circ !, \ q\prime = q \circ !)}} )

( c\prime ) is another candidate.

For sets - Cartesian product.

/*/ is a pair. Corresponds to product data type in Hask (inhabited with all elements of the Cartesian product).

Dual is Coproduct.

**** /*/

<<>>

*** <<>> :drill: :properties: :ID: 3599f721-e345-40e4-8361-be4d0898d35a 🔚

Universal construction:

\begin{matrix} && c\prime && \ & {}^p\nearrow\phantom{{}^{p}} & {\tiny \phantom{!}}\uparrow{\tiny !} & \phantom{{}^q}\nwarrow^q& \ a & \underset{\iota_a}{\rightarrow} & c & \underset{\iota_b}{\leftarrow} & b \end{matrix}

Pattern: ( i: a \to c, \ j: b \to c )

Ranking: ( \max{\sum^{\forall}{(!: c \to c\prime \ | \ i\prime = ! \circ i, \ j\prime = ! \circ j)}} )

( c\prime ) is another candidate.

For sets - Disjoint union.

/*/ is a set assembled from other two sets, in Haskell it is a tagged set (analogous to disjoint union).

Dual is Product.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 5e1469b1-ce93-4f70-a820-2735857d3af7 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:02] 🔚

General particular structure. In which structure, properties autofollows from definition, axioms.

Also uses as a term when surcomstances of structures, rules, properties, axioms used coinside with the definition of a particular object \therefore form object of this type with the according properties and possibilities.

*** <<>> :drill: :PROPERTIES: :ID: d0492e1d-4e50-43dc-b9f6-6c59132b0eed :END:

Category which is includded into a bigger category.

*** <<>> :drill: SCHT: <2020-07-02 Thu> :properties: :ID: 69d139d5-3a8d-4a07-a5b3-44778cc0ce61 :DRILL_LAST_INTERVAL: 189.7248 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:22] 🔚

All morphisms from source object to target object.

Denotation: ( hom_{C}(X,Y) = (\forall f: X \to Y) = hom(X,Y) = C(X,Y) ) Denotation was not standartized.

Hom sets belong to Set category.

In Set category: ( \exists! (a, b) \iff \exists! Hom ), ( \forall Hom \in \ Set ). Set category is special, Hom sets are also objects of it.

Category can include Set, and hom sets, or not.

**** /*/ <<>> <<>>

**** <<>> :drill: SCHT: <2020-05-07 Thu> :properties: :ID: e2bb6ea3-2f94-47d8-b4ab-b09feb096d98 :DRILL_LAST_INTERVAL: 15.1797 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 29 :DRILL_FAILURE_COUNT: 15 :DRILL_AVERAGE_QUALITY: 2.69 :DRILL_EASE: 1.34 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:36] 🔚

( hom:\mathcal{C}^{op} \times \mathcal{C} \to Set ) Functor from the product of ( \mathcal{C} ) with its opposite category to the category of sets.

Denotation variants: ( H_A = \mathrm{Hom}(-, A) ) ( h_A = {\cal \mathcal{C}}(-, A) ) ( Hom(A,-): \ \mathcal{C} \to Set )

Hom-bifunctor: ( Hom(-,-): \ \mathcal{C}^{op} \times \mathcal{C} \to Set )

**** <<>> :drill: :PROPERTIES: :ID: 2ed36b60-ef0f-4ab2-bb90-8349982d76db :END:

Generalises the notion of function set to internal object. As also hom set to internal hom objects.

Cartesian closed (monoidal) category strictly required, as /*/ multiplicaton holds composition requirement:

( \circ:hom(y,z) \otimes hom(x,y) \to hom(x,z) )

Denotation: ( b^{a} )

Universal construction:

\begin{tikzcd} c \arrow[dd, "u", dotted] & & c \times a \arrow[dd, "u \times 1^{a}", dotted] \arrow[rrdd, "g"] \arrow[ll] & & \ & & & & \ b^{a} & & b^{a} \times a \arrow[rr, "eval", dotted] \arrow[ll] & & b \end{tikzcd}

, where in Category: ( b^{a} ) - exponential object, \times - product bifunctor, ( a ) - argument of //, ( b ) - result, ( c ) - candidate, ( b^{a} \equiv ( a \Rightarrow b ) ) - //.

/*/ ( b^{a} ) (also as ( (a \Rightarrow b) )) represent exponentiation of cardinality of ( \forall b^{a} ) possiblities.

***** /*/ <<>> <<>> <<>> <<>> <<>>

***** <<>> :drill: :PROPERTIES: :ID: 821d08ed-f6b4-44a3-ba6d-9dbb6dd22252 :END:

Uses Hom objects (exponential objects), which do not belong into Set category. Category is no longer small, now may be called large.

( hom(x,y) \in K ).

Called: /*/ over =K= (whick holds hom objects).

****** /*/ <<>> <<>>

*** <<>> :drill: :properties: :ID: f9b01a3c-7f8c-43da-94d0-83cca1158686 🔚

The category of magmas, denoted ( Mag ), has as objects - sets with a binary operation, and morphisms given by homomorphisms of operations (in the universal algebra sense).

**** /*/

<<>> <<>> <<>>

** <<>> :drill: SCHT: <2020-07-22 Wed> :properties: :ID: 1da15965-03f0-4cf9-a582-3df5c4deb27e :DRILL_LAST_INTERVAL: 210.3048 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:38] 🔚

Set of values. For type to have sence the values must share some sence, properties.

*** /*/

<<>> <<>> <<>>

*** <<>> :drill: SCHT: <2021-03-12 Fri> :properties: :ID: 1325dd6d-8944-4226-a703-e5e7ecb90838 :DRILL_LAST_INTERVAL: 347.7805 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:51] 🔚

Data type recieved by ->inferring->compiling->execution.

*** <<>> :drill: :properties: :ID: 3c1de247-a95a-4cb3-ba2d-476bd69f263a 🔚

Composite type formed by combining other types.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-05-26 Tue> :properties: :ID: 22428179-0fdb-4723-94dc-596dd41f61c0 :DRILL_LAST_INTERVAL: 194.5828 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-13 Wed 20:50] 🔚

Number of possible implementations for a given type signature.

Disjunction, sum - adds cardinalities. Conjunction, product - multiplies cardinalities.

**** /*/ <<>>

*** <<>> :drill: :properties: :ID: c6fd80d7-4f2b-4c0e-a924-db0616cd126d 🔚

/*/ - constant value; nullary data constructor.

*** <<>> :drill: :properties: :ID: dc94bd99-113e-4025-82e8-39cd6843091b 🔚

One instance that inhabit data type.

*** <<>> :drill: :properties: :ID: 4c0b5dd7-d8e2-4394-9a38-e99bd7961130 🔚

Data type declaration is the most general and versatile form to create a new data type. Form: #+begin_src haskell data [context =>] type typeVars1..n = con1 c1t1..i | ... | conm cmt1..q [deriving] #+end_src

*** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: f40f1feb-3a1d-4987-b585-6d8d6080d307 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:40] 🔚

When type and values have relation between them. Type has restrictions for values, value of a type variable has a result on the type.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-06-27 Sat> :properties: :ID: a4d8e374-a99a-4d9a-b159-13b004c2b3ed :DRILL_LAST_INTERVAL: 210.586 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.286 :DRILL_EASE: 2.86 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:47] 🔚

Generator. Gen type is to generate pseudo-random values for parent type. Produces a list of values that gets infinitely cycled.

*** <<>> :drill: SCHT: <2020-06-03 Wed> :properties: :ID: f923ff3e-43bb-4e4a-8c55-e4f2354e3810 :DRILL_LAST_INTERVAL: 181.5069 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-04 Wed 01:24] 🔚

Any combination of * and ->

Type that take more types as arguments.

/Humbly really a function/

**** /*/

<<>>

*** <<>> :drill: SCHT: <2021-04-18 Sun> :properties: :ID: f9bbca43-6672-48e8-8d1c-af323786efc2 :DRILL_LAST_INTERVAL: 357.4172 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:57] 🔚

Create a new type from old type by attaching a new constructor, allowing type class instance declaration. #+begin_src haskell newtype FirstName = FirstName String #+end_src

Data will have exactly the same representation at runtime, as the type that is wrapped.

#+begin_src haskell newtype Book = Book (Int, Int) #+end_src #+begin_src text (,) /
Integer Integer #+end_src

*** <<>> :drill: SCHT: <2020-06-20 Sat> :properties: :ID: 55ec2cac-10dc-4a09-a795-4e99c7e5aaed :DRILL_LAST_INTERVAL: 203.1819 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:01] 🔚

The most generic data type that still typechecks.

*** <<>> :drill: SCHT: <2021-04-26 Mon> :properties: :ID: dcca9aba-08e0-4616-8bec-b803bf67f066 :DRILL_LAST_INTERVAL: 363.774 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

Is an algebraic data type respesentation of a product construction. Formed by logical conjunction (=AND=, '=* *=').

Haskell forms: #+begin_src haskell -- 1. As a tuple (the uncurried & most true-form) (T1, T2)

-- 2. Curried form, data constructor that takes two types C T1 T2

-- 3. Using record syntax. =r# = would return the respective =T#=. C { r1 :: T1 , r2 :: T2 } #+end_src

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-08-18 Tue> :PROPERTIES: :ID: ce72c132-c2e8-4d14-bac6-4b399735c7fa :DRILL_LAST_INTERVAL: 10.764 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-08-07 Fri 10:47] :END:

Enumerated (ordered) set. Set with a strict order property.

Denotation: #+begin_src haskell () ( , ) ( , , ) ( , , ... ) #+end_src

More general mathematical denotation was not established, variants: ( (n)_{n \in \mathbb{N}} ) ( \omega \to X ) ( { i:Ord \ | \ i < \alpha } )

In Haskell: Data type that stores multiple ordered values withing a single value.

#+caption: Sequence constructor naming by arity #+name: tab--sequence-names #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Name | Arity | Denotation | |------------------------+-------+------------| | Unit, empty | 0 | =()= | | Singleton | 1 | =(_)= | | <<>>, pair, <<>> | 2 | =( , )= | | <<>>, three-tuple | 3 | =( , , )= | | Sequence | N | =( , , ...)= |

***** /*/

<<>> <<>> <<>> <<>>

***** <<>> :drill: SCHT: <2020-08-15 Sat> :properties: :ID: 935629ed-4dee-43ef-9eff-51de168656d7 :DRILL_LAST_INTERVAL: 10.3873 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:25] 🔚

Sequence of one type objects.

Denotation: #+begin_src haskell [] [ , ] [ , , ] [ , , ... ] #+end_src

Haskell definition: #+begin_src haskell data [] a = [] | a : [a] #+end_src

Definition is self-referrential (self-recursive), can be seen as anamorphism (unfold) of the =[]= (empty list, memory cell which is container of particular type) and =:= (cons operation, pointer). As such - can create non-terminating data type (and computation), in other words - infinite.

*** <<>> :drill: :properties: :ID: a895477f-99de-4a09-bc9d-dc2c86e0a0af 🔚

Proxy type holds no data, but has a phantom parameter of arbitrary type (or even kind). Able to provide type information, even though has no value of that type (or it can be may too costly to create one). #+begin_src haskell data Proxy a = ProxyValue

let proxy1 = (ProxyValue :: Proxy Int) -- a has kind Type let proxy2 = (ProxyValue :: Proxy List) -- a has kind Type -> Type #+end_src

*** <<>> :drill: SCHT: <2020-12-15 Tue> :properties: :ID: 3100b260-2b5c-40a7-bc27-2dc6e0f8f3c5 :DRILL_LAST_INTERVAL: 260.7555 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:44] 🔚

Type check takes place at compile level, so compiled program already has expectations of types it should recieve.

*** <<>> :drill: :properties: :ID: 9fbc8692-d766-4b0b-bb07-76cb11b9aea8 :DRILL_LAST_INTERVAL: 0.0 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.36 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-06-05 Wed 14:24] 🔚

Mathematical type. They form into structural type system.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-06-22 Mon> :properties: :ID: 37dc5166-6ad1-468d-a3c2-d4144ac5bb83 :DRILL_LAST_INTERVAL: 61.0522 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.25 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:16] 🔚

Strict global hierarchy and relationships of types and their properties. Haskell type system is /*/. In most languages typing is name-based, not structural.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-07-25 Sat> :properties: :ID: debb1f7b-bdbf-4984-8d92-ee34b63dd5dc :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:53] 🔚

Algebraic data type formed by logical disjunction (OR '|').

*** <<>> :drill: SCHT: <2021-01-02 Sat> :properties: :ID: 35a84a4d-afa8-44b1-aaf4-8fa258f5220c :DRILL_LAST_INTERVAL: 316.8159 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:10] 🔚

Create new type constructor, and use all data structure of the base type.

*** <<>> :drill: SCHT: <2020-07-19 Sun> :properties: :ID: 41fe6fb3-8069-40d4-ac21-1e2995e652be :DRILL_LAST_INTERVAL: 233.4928 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:43] 🔚

Type system construct that adds a support of ad hoc polymorphism.

Type class makes a nice way for defining behaviour, properties over many types/objects at once.

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-10-11 Sun> :properties: :ID: 1bda8aab-a08c-4d7b-bd08-0b1a6f559a33 :DRILL_LAST_INTERVAL: 270.5287 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:57] 🔚

Type class of QuickCheck.Arbitrary (that is reexported by QuickCheck) for creating a generator/distribution of values. Useful function is arbitrary - that autogenerates values.

***** <<>> :drill: :properties: :ID: 31fe10b3-340e-489a-ab65-a4532a005d0a 🔚

Depends on type and generates values of that type.

**** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: a8ad8f53-2ad9-414d-8c6b-8df9d0cac80e :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:43] 🔚

Pseudogenerates a function basing on resulting type. #+begin_src haskell coarbitrary :: CoArbitrary a => a -> Gen b -> Gen b #+end_src

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: 7408b1c4-78e9-4901-abbc-c8cead60031f 🔚

Allows dynamic type checking in Haskell for a type. Shift a typechecking of type from compile time to runtime. /*/ type gets wrapped in the universal type, that shifts the type checks to runtime.

Also allows:

  • Get the type of something at runtime (ex. print the type of something =typeOf=).
  • Compare the types.
  • Reifying functions from polymorphic type to conrete (for functions like =:: Typeable a => a -> String=).

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: d41bdd5c-5a64-4ab8-8201-8c9ae3437a61 🔚

Type class has a superclass.

**** <<>> :drill: SCHT: <2020-07-22 Wed> :properties: :ID: 7294eaf7-4ff8-41c8-a6a9-c9060b5edfb9 :DRILL_LAST_INTERVAL: 234.5372 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:17] 🔚

Type class instances sometimes can be automatically derived from the parent types.

Type classes such as Eq, Enum, Ord, Show can have instances generated based on definition of data type.

P.S.

Language options:

  • DeriveAnyClass
  • DeriveDataTypeable
  • DeriveFoldable
  • DeriveFunctor
  • DeriveGeneric
  • DeriveLift
  • DeriveTraversable
  • DerivingStrategies
  • DerivingVia
  • GeneralisedNewtypeDeriving
  • StandaloneDeriving

***** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-06-23 Tue> :properties: :ID: 06ae5a19-fd5f-485c-b7da-c3027c76d523 :DRILL_LAST_INTERVAL: 61.7736 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 14 :DRILL_FAILURE_COUNT: 4 :DRILL_AVERAGE_QUALITY: 3.429 :DRILL_EASE: 2.58 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:17] 🔚

Nullary type constructor.

*** <<>> :drill: :properties: :ID: 9b49b7ac-d596-45c5-a551-cf2f9b3d6cb3 🔚

Name of the data type.

Constructor that takes type as an argument and produces new type.

*** <<>> :drill: SCHT: <2020-09-12 Sat> :properties: :ID: 9ab3591b-b3b1-464c-856b-0e3ed4834b33 :DRILL_LAST_INTERVAL: 241.6625 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:59] 🔚

Synonim for existing type. Uses the same data constructor. #+begin_src haskell type FirstName = String #+end_src Used to distinct one entities from other entities, while they have the same type. Also main type functions can operate on a new type.

*** <<>> :drill: SCHT: <2020-08-07 Fri> :properties: :ID: 54480f81-42f0-4545-bfa6-93e56eba36ae :DRILL_LAST_INTERVAL: 225.56 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:36] 🔚

// - is a =_= or =_name= in the expression. On evaluation GHC would show the derived type information which should be in place of the //. That information helps to fill in the gap.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-12-24 Thu> :properties: :ID: 6e24ecce-be5d-4fcc-b167-649f710d1be8 :DRILL_LAST_INTERVAL: 270.7993 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-28 Sat 19:18] 🔚

Automatic data type detection for expression.

**** /*/

<<>> <<>> <<>> <<>>

*** <<>> :drill: SCHT: <2021-01-31 Sun> :properties: :ID: 2408c5a2-39ba-4732-a4b2-347e87c268d6 :DRILL_LAST_INTERVAL: 279.6926 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:49] 🔚

Block of implementations of functions, based on unique type class->type pairing.

*** <<>> :drill: :properties: :ID: 512cf517-eacf-4d39-9d7c-8ec840d9a384 🔚

Weak ordering of types.

The rank of polymorphic type shows at what level of nesting =forall= quantifier appears. Count-in only quantifiers that appear to the left of arrows. #+begin_src haskell f1 :: forall a b. a -> b -> a -- = f1 :: a -> b -> c

g1 :: forall a b. (Ord a, Eq b) => a -> b -> a -- = g1 :: (Ord a, Eq b) => a -> b -> a #+end_src f1, g1 - rank-1 types. Haskell itself implicitly adds universal quantification.

#+begin_src haskell f2 :: (forall a. a->a) -> Int -> Int g2 :: (forall a. Eq a => [a] -> a -> Bool) -> Int -> Int #+end_src f2, g2 - rank-2 types. Quantificator is on the left side of a \to. Quantificator shows that type on the left can be overloaded.

Type inference in Rank-2 is possible, but not higher.

#+begin_src haskell f3 :: ((forall a. a->a) -> Int) -> Bool -> Bool #+end_src f3 - rannk3-type. Has rank-2 types on the left of a \to.

#+begin_src haskell f :: Int -> (forall a. a -> a) g :: Int -> Ord a => a -> a #+end_src f, g are rank 1. Quantifier appears to the right of an arrow, not to the left. These types are not Haskell 98. They are supported in RankNTypes.

**** /*/

<<>> <<>> <<>> <<>> <<>> <<>> <<>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 6f31712e-d46b-4474-bd68-6b3bc2c90309 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:00] 🔚

Refers to an unspecified parametric polymorphic type (maybe with ad-hoc polymorphism constraints) (keeps a naturality condition) in Haskell type signature.

In Haskell are always introduced with keyword =forall= explicit or implicit.

*** <<>> :drill: SCHT: <2020-07-27 Mon> :properties: :ID: 071c758f-9a93-4769-a7f0-aaa02652e57f :DRILL_LAST_INTERVAL: 195.1208 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.714 :DRILL_EASE: 2.38 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:59] 🔚

Type that directly exist on the hardware. The type abstraction can be completely removed. With unlifted types Haskel type system directly manages data in the hardware.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: eda588af-3ef5-43a8-8f06-6a6f2f556036 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Type system and algebra that also track the multiplicity of data. There are 3 general linear type groups:

  • 0 - exists only at type level and is not allowed to be used at value level. Aka =s= in ST-Trick.
  • 1 - data that is not duplicated
  • 1< - all other data, that can be duplicated multiple times.

**** /*/

<<>>

*** <<>> :drill: :properties: :ID: 809c682b-457e-47df-bdfd-92302d3c42da 🔚

Data.List.NonEmpty Has a Semigroup instance but can't have a Monoid instance. It never can be an empty list.

#+begin_src haskell data NonEmpty a = a :| [a] deriving (Eq, Ord, Show) #+end_src

:| - an infix data costructor that takes two (type) arguments. In other words :| returns a product type of left and right

*** <<>> :drill: SCHT: <2020-06-20 Sat> :properties: :ID: 4554aa14-760c-41f0-a9fc-69cc3f7fa66a :DRILL_LAST_INTERVAL: 58.9058 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:17] 🔚

/*/ - allows to check that behaviour conforms to the protocol.

So far very complex, not very productive (or well-established) topic.

*** <<>> :drill: SCHT: <2020-12-14 Mon> :properties: :ID: 8efc93b6-3518-40e7-9143-eb695b267bd4 :DRILL_LAST_INTERVAL: 260.4336 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:50] 🔚

Tree where every element is a Leaf (structure stub, Nothing) or a Node (split of branches):

#+begin_src haskell data BinaryTree a = Leaf | Node (BinaryTree a) a (BinaryTree a) #+end_src

*** <<>> :drill: SCHT: <2021-07-21 Wed> :properties: :ID: 6a1419f1-74f8-4cab-9f50-6dd93c2b47bd :DRILL_LAST_INTERVAL: 444.3067 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-05-03 Sun 13:07] 🔚

A =_= non-value in the type or pattern match expression, placeholder, fits for enything.

Denoted #+begin_src haskell _ #+end_src

**** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2021-07-17 Sat> :properties: :ID: 31ef00a3-6d1e-4ee4-a0da-eac26238aace :DRILL_LAST_INTERVAL: 440.1071 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-05-03 Sun 13:08] 🔚

Haskell /*/ type class means to have lowest value & highest value, so a bounded range of values.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-10-08 Thu> :properties: :ID: 73f88452-54ff-4192-83fc-0681f0407e9a :DRILL_LAST_INTERVAL: 268.496 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:01] 🔚

  1. Type constructor
  2. Data constructor

Also see: Constant

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-08-07 Fri> :properties: :ID: c7212fc4-2c44-4cc0-b57a-76e9ba194ac3 :DRILL_LAST_INTERVAL: 225.5602 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:38] 🔚

Type constraints for polymorphic variables. Written before the main type signature, denoted: #+begin_src haskell TypeClass a => ... #+end_src

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 3d5a5fec-312b-47a2-bcb7-8d87f6a2baf3 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:39] 🔚

Values that is a component of data type set.

*** <<>> :drill: :PROPERTIES: :ID: 0ea257ed-8b3e-49a3-9aae-400156d62955 :END:

#+begin_src haskell data Maybe = Nothing | Just a #+end_src

Does not represent the information why =Nothing= happened. For error - use Either. Do not propagate /*/.

Handle /*/ locally to where it is produced. =Nothing= does not hold useful info for debugging & short-circuits the processes. Do not expect code type being bug-free, do not return =Maybe= to end user since it would be impossible to debug, return something that preserves error information.

***** /*/

<<>>

*** <<>> :drill: SCHT: <2020-08-11 Tue> :properties: :ID: 925824e3-ed7f-4e2f-ab3a-dd4700b0291c :DRILL_LAST_INTERVAL: 209.7683 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:55] 🔚

Data type inferred from the text of the code.

*** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 9fdd9acf-b98d-469d-b34f-c4c007177135 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:40] 🔚

  1. Abstract data type
  2. Algebraic data type

*** <<>> :drill: SCHT: <2020-07-22 Wed> :properties: :ID: 736674fb-45a3-4539-8774-7ccf419b5487 :DRILL_LAST_INTERVAL: 210.3048 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:37] 🔚

Fully resolved, definitive, non-polymorphic type.

*** <<>> :drill: :properties: :ID: 4dd36365-da34-489b-bd72-bf327bcb34b6 🔚

When type constructor and data constructor have the same name.

Theoretically if person knows the rules - /*/ can be solved, because in Haskell type and data declaration have different places of use.

*** <<>> :drill: :properties: :ID: 56fd7e68-49b4-496f-bc0b-bcdd8ee3fa57 🔚

Kind -> Type -> Data

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-05-20 Wed> :properties: :ID: 40e4a54b-c1c7-41fc-ac84-d3f167eb320f :DRILL_LAST_INTERVAL: 171.6999 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:17] 🔚

There is only one way to "perform" an I/O action: bind it to Main.main of the program. For function I/O it should be in IO monad and evaluated from Main.main.

Type for values whose evaluations has a posibility to cause side effects or return unpredictable result. Haskell standard uses monad for constructing and transforming IO actions. IO action can be evaluated multiple times.

IO data type has unpure imperative actions inside. Haskell is pure Lambda calculus, and unpure IO integrates in the Haskell purely (type system abstracts IO unpurity inside IO data type).

IO sequences effect computation one after another in order of needed computation, or occurence:

#+begin_src haskell twoBinds :: IO () twoBinds = putStrLn "First:" >> getLine >>= \a -> putStrLn "Second:" >> getLine >>= \b -> putStrLn ("\nFirst: " ++ a ++ ".\nSecond " ++ b ++ ".") main = twoBinds #+end_src

Sequencing is achieved by compilation of effects performing only while they recieve the sugared-in & passed around the =RealWorld= fake type value, that value in the every computation gets the new "value" and then passed to the next requestes computation. But special thing is about this parameter, this =RealWorld= type value passed, but never looked at. GHC realizes, since value is never used, - it means value and type can be equated to =()= and moreover reduced from the code, and sequencing stays.

** <<>> :drill: :properties: :ID: 6ff3b474-8f28-4eb9-975a-312d37521cc6 🔚

Finite combination of symbols that is well-formed according to context-free grammar.

Generally meaningless. Meaning gets derived from an /*/ & context (and/or content words) by congruency with knowledge & expirience.

*** /*/

<<>>

*** <<>> :drill: SCHT: <2020-12-07 Mon> :properties: :ID: 4fe26c88-61dc-4a5c-b31e-aa91d5a9afd0 :DRILL_LAST_INTERVAL: 228.5113 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 4 :DRILL_AVERAGE_QUALITY: 2.917 :DRILL_EASE: 2.1 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:35] 🔚

/*/ - mathematical expression that can be evaluated in a finite number of operations.

May contain:

  • constants
  • variables
  • operations (e.g., + − \times \div)
  • functions (e.g., nth root, exponent, logarithm, trigonometric functions, and inverse hyperbolic functions), but usually no limit.

*** <<>> :drill: :properties: :ID: 8638f0a1-1228-4196-b7f3-0c5db5c13028 🔚

Right-hand side of the expression.

*** <<>> :drill: :properties: :ID: 060e0611-e893-46f5-b133-c020738fdf96 🔚

Left-hand side of the expression.

*** <<>> :drill: SCHT: <2020-07-11 Sat> :properties: :ID: 3d5326a4-74a7-433d-860a-2590072bb61d :DRILL_LAST_INTERVAL: 224.5541 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:08] 🔚

Reducible expression.

*** <<>> :drill: SCHT: <2020-10-26 Mon> :properties: :ID: fd27911c-bf33-4510-91ff-afa1d4e7d2e1 :DRILL_LAST_INTERVAL: 230.7011 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:59] 🔚

Link together sequences, expressions.

*** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 83ea3e34-0c72-4976-abaa-875767736cea :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Equivalence of a processes in expressions. If expressions have according parameters different, but the internal processes are literally the same process.

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 5030cc64-34d8-49d8-896d-fa6e4aeea4ac :DRILL_LAST_INTERVAL: 4.0 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.5 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:05] 🔚

Expression that does not contain any free variables.

**** /*/

<<>>

*** <<>> :drill: :properties: :ID: 1362e457-cca3-44c3-b5a4-24111d56d71c 🔚

A name for expression.

\additional

There fequently can be heard: one of most notable Haskell properties is =Haskell has immutable "variables"= (and term here used in the sence that imperative programmers frequently use). Logically we see statement is contradictory with itself: "variables" - something that has change as a defining propery - are not changing; it is a nonsencical statement. Please, read the saying as: =Haskell has immutable values=, due to following the value semantics: see "Value". And Haskell expressions are functions (that are referentially transparent - meaning itself immutable) - and they are also values (hense term "functional programming" means - functions are first-class values). Since values bind to variables - people are wrongly mix-up terms and say their names (according "/*")/ are immutable.

As you see in the code - Haskell variables (same names) hold different values at different times. Variables are reused, meaning "names are reused" - binded to different values on scope changes. But all values that Haskell holds - are, by the design of the language, are treated immutable, any transformations Haskell resolves by creating new values, and frees the space by freeing-up from no longer needed values.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-11-29 Sun> :properties: :ID: a23fe978-1afc-4fc9-8dda-6bb49b9554a3 :DRILL_LAST_INTERVAL: 115.8885 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.417 :DRILL_EASE: 2.24 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:17] 🔚

Composable expression.

** <<>> :drill: SCHT: <2020-06-27 Sat> :properties: :ID: e86b0dde-ef8f-447e-a966-7553784aab54 :DRILL_LAST_INTERVAL: 89.9157 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 20:00] 🔚

Full dependency of one quantity from another quantity.

Denotation: ( y = f(x) ) ( f: X \to Y ), where ( X ) is domain, ( Y ) is codomain.

Directionality and property of invariability emerge from one another. #+begin_src haskell -- domain func codomain

  •  ->   *
    

#+end_src

( y(x) = (zx^{2} + bx + 3 \ | \ b = 5) ) ^ ^ ^^ ^ ^ | | || \( \textsubscript{Var} )\( \textsubscript{Constant} ) | | | \( \textsubscript{Bound variable} ) | | \( \textsubscript{Free variable} ) | \( \textsubscript{Parameter} ) \( \textsubscript{Name of the function} )

Lambda abstraction is a function. Function is a mathematical operation.

Function = Total function = Pure function. Function theoretically can be to memoized.

Also see: Partial function Inverse function - often partially exists (partial function).

*** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-08-07 Fri> :properties: :ID: fa4caa07-eea5-4082-aaed-92abb820e768 :DRILL_LAST_INTERVAL: 225.56 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:33] 🔚

Number of parameters of the function.

  • nullary - f()
  • unary - f(x)
  • binary - f(x,y)
  • ternary - f(x,y,z)
  • n-ary - f(x,y,z..)

*** <<>> :drill: SCHT: <2020-07-06 Mon> :properties: :ID: 8366200a-a8ed-4c7b-baec-eb957d9f3d64 :DRILL_LAST_INTERVAL: 74.9637 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.7 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:35] 🔚

Function is a complete one-to-one pairing of elements of domain and codomain (image). It means function both surjective (so image == codomain) and injective (every domain element has unique correspondence to the image element).

For bijection inverse always exists.

Bijective operation holds the equivalence of domain and codomain.

Denotation: #+begin_src text ⤖

->> f : X ⤖ Y #+end_src LaTeX needed to combine symbols: ( \newcommand*{\twoheadrghtarrowtail}{\mathrel{\rightarrowtail\kern-1.9ex\twoheadrightarrow}} f : X \twoheadrghtarrowtail Y )

Corersponds to isomorphism.

**** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: bf7ce908-9d5d-4a00-ab02-e7b33edd2c76 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:02] 🔚

Function without free variables. Higher-order function that uses only function application and other combinators.

#+begin_src haskell \a -> a \ a b -> a b \f g x -> f (g x) \f g x y -> f (g x y) #+end_src

Not combinators: #+begin_src haskell \ xs -> sum xs #+end_src Informal broad meaning: referring to the style of organizing libraries centered around the idea of combining things.

**** <<<\Psi-combinator>>> :drill: SCHT: <2020-07-27 Mon> :properties: :ID: dd833dc5-91f9-4bec-aa5a-e292dfb387d8 :DRILL_LAST_INTERVAL: 235.4952 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-05 Thu 01:04] 🔚

Transforms two of the same type, applying same mediate transformation, and then transforming those into the result. #+begin_src haskell import Data.Function (on) on :: (b -> b -> c) -> (a -> b) -> a -> a -> c #+end_src

#+begin_src text a--\b * ---c a--/b #+end_src

***** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-06-22 Mon> :properties: :ID: 630790f7-377f-463e-8058-792502dbcc88 :DRILL_LAST_INTERVAL: 200.3048 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-05 Thu 01:05] 🔚

/*/ - bind the argument to the parameter of a function, and do a beta-reduction.

**** /*/

<<>> <<>> <<>> <<>>

*** <<>> :drill: :properties: :ID: 8c0947a8-56ae-49de-b3a8-ab87beab0bd6 🔚

Expression that haracterizes the process.

*** <<>> :drill: :properties: :ID: e609101f-4f65-4f58-b997-2fe44c52c6d9 🔚

#+begin_src haskell (.) :: (b -> c) -> (a -> b) -> a -> c

a -> (a -> b) -> (b -> c) -> c #+end_src

In Haskell inline composition requires: #+begin_src haskell h.g.f $ i #+end_src

**** /*/

<<>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-08-02 Sun> :properties: :ID: 6eb9d501-0dda-4a9e-b3e1-e35fb84d31b8 :DRILL_LAST_INTERVAL: 162.9166 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:15] 🔚

Is a part with name of the function and it's paramenters. AKA: ( f(x) )

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 15fbd0e9-f327-4065-872e-23713f79ec12 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

The range of a function refers to either the codomain or the image of the function, depending upon usage. Modern usage almost always uses range to mean image. So, see Function image.

*** <<>> :drill: SCHT: <2020-09-17 Thu> :properties: :ID: 61a40480-45d2-4632-9948-986eecd8b7cb :DRILL_LAST_INTERVAL: 192.3791 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-08 Sun 23:21] 🔚

Function that has arity > 1.

\additional

HOF is:

  • function that accepts function as a parameter
  • function that has more then one parameter.

Application of an argument to /*/ produces a function that has =arity - 1=.

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-05-18 Mon> :properties: :ID: 9513b166-74df-4a9f-b7da-d03f84ca2cfc :DRILL_LAST_INTERVAL: 166.0782 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-12-04 Wed 01:13] 🔚

Catamorphism of a structure to a lower type of structure. Often to a single value.

// is a higher-order function that takes a function which operates with both main structure and accumulator structure, // applies units of data structure to a function wich works with accumulator. Upoun traversing the whole structure - the accumulator is returned.

*** <<>> :drill: :properties: :ID: c1f2a44b-8b24-47b8-8e23-304ad4fc536a 🔚

Function one-to-one injects from domain into codomain.

Keeps distinct pairing of elements of domain and image. Every element in image coresponds to one element in domain.

( \forall a,b \in X, ; f(a)=f(b) \Rightarrow a=b )

( \exists (inverse \ function) \ | \ \forall (injective \ function) )

Denotion: #+begin_src text ↣

-> f : X ↣ Y #+end_src $f : X \rightarrowtail Y$

Corresponds to Monomorphism.

**** /*/

<<>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-05-03 Sun> :properties: :ID: d8d7edc3-b943-4afa-8832-ddb2ef2a386d :DRILL_LAST_INTERVAL: 154.6526 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:14] 🔚

One that does not cover all domain. Unsafe and causes trouble.

*** <<>> :drill: SCHT: <2020-08-01 Sat> :properties: :ID: 5c84fbd6-2c97-464f-9431-965dd8c91aef :DRILL_LAST_INTERVAL: 217.5392 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-27 Fri 13:08] 🔚

/*/ means properly abstracted.

If the contrary - abstraction is unpure.

Also see: pure function.

**** /*/

<<>>

*** <<>>

Function that is pure ( \equiv ) referentially transparent function.

*** <<>> :drill: SCHT: <2020-05-31 Sun> :properties: :ID: c8cadab6-16e6-4d0e-9b79-6e3b56dcbd8e :DRILL_LAST_INTERVAL: 188.7495 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-11-24 Sun 02:27] 🔚

Writing function in a parentheses. Allows to pass around partially applied functions.

*** <<>> :drill: SCHT: <2021-01-21 Thu> :properties: :ID: 56270a1d-ef0e-4986-a1ff-04606b37ccb7 :DRILL_LAST_INTERVAL: 298.2108 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.25 :DRILL_EASE: 2.86 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:57] 🔚

Function uses codomain fully.

( \forall y \in Y, \exists x \in X )

Denotation: ( f : X \twoheadrightarrow Y )

Corresponds to Epimorphism.

**** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2021-02-16 Tue> :properties: :ID: b48b82e3-f86c-4360-a568-727c2500d06c :DRILL_LAST_INTERVAL: 296.1986 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.38 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:50] 🔚

Function that does not cover at least one edge case.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: b6592f9f-3718-4f2f-9423-06b590e6b84d :DRILL_LAST_INTERVAL: 208.7241 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:40] 🔚

/*/ - having variable arity (often up to indefinite).

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 61416c64-6cbf-4af4-9428-ad6f79e76701 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

Source set of a function. ( X ) in ( X \to Y ).

*** <<>> :drill: SCHT: <2020-07-07 Tue> :properties: :ID: f8603032-30f1-4074-80b5-0f6f49428241 :DRILL_LAST_INTERVAL: 224.8335 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:16] 🔚

( Y ) in $X \to Y$. Codomain - target set of a function.

*** <<>> :drill: SCHT: <2020-06-11 Thu> :properties: :ID: dc5f353b-84dc-4bce-85e2-eaa56f18401f :DRILL_LAST_INTERVAL: 74.2598 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.9 :DRILL_EASE: 2.72 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:56] 🔚

Logical function that has arity and produces proposition.

*** <<>> :drill: SCHT: <2020-09-14 Mon> :properties: :ID: 2e2d87ae-d918-47fc-b810-f95366fe4039 :DRILL_LAST_INTERVAL: 168.6017 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:53] 🔚

Repeated function application when sometimes the same function gets called.

Allows computations that may require indefinite amount of work.

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-06-21 Sun> :properties: :ID: be130896-9bec-4276-9a7b-41cfb9f3b6dd :DRILL_LAST_INTERVAL: 210.1351 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-24 Sun 02:33] 🔚

A part of a recursive function that trivially produces result.

**** <<>> :drill: :properties: :ID: 62dd2851-710e-4035-9890-6af1c17e6305 🔚

Tail calls are recursive invocantions of itself.

**** <<>> :drill: :properties: :ID: 11fd02fd-e0b7-4e41-aad9-6881c980207d 🔚

Type of the parameter changes in recursive invocations of function.

Is always a higher-ranked type.

***** /*/

<<<Milner–Mycroft typability>>> <<<Milner–Mycroft calculus>>>

*** <<>> :drill: SCHT: <2020-07-28 Tue> :properties: :ID: e6e68077-da2a-41d1-aed4-c033f7a97abe :DRILL_LAST_INTERVAL: 241.6651 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:41] 🔚

Variable in the fuction that is not bound by the head. Until there are /* -/ function stays partially applied.

*** <<>> :drill: SCHT: <2020-05-23 Sat> :properties: :ID: c20b75e8-cd85-4f41-84c2-660ffdb963dd :DRILL_LAST_INTERVAL: 181.4899 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-11-24 Sun 02:24] 🔚

( f(x) = f^{\mathcal{X \to X}} \ | \ \forall x \in \mathcal{X} ), ( \mathcal{X} ) is closed under ( f ), it is a trivial case when operation is legitimate for all values of the domain.

Operation on members of the domain always produces a members of the domain. The domain is closed under the operation.

In the case when there is a domain values for which operation is not legitimate/not exists:

( f(x) = f^{\mathcal{V \to X}} \ | \ \mathcal{V \in X}, \forall x \in \mathcal{V} ), ( \mathcal{X} ) is closed under ( f ).

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-06-28 Sun> :properties: :ID: 737527a3-4fcf-4499-9d27-6fab664d9da0 :DRILL_LAST_INTERVAL: 185.8455 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:26] 🔚

παρά /para/ subsidiary μέτρον /metron/ measure

Named varible of a function.

Argument is a supplied value to a function parameter.

Parameter (formal parameter) is an irrefutable pattern, and implemeted that way in Haskell.

**** /*/

<<>> <<>> <<>>

*** <<>> :drill: :properties: :ID: 3ec44a13-f6e9-4ba4-b0af-1c12b8017775 🔚

Part of function parameters applied.

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 714fb9d5-19c8-44ba-9927-eccce436a1f3 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

Expression, logical function that is/can produce a proposition.

**** /*/ Well formed formula WFF wff WFFS wffs

** <<>> :drill: :properties: :ID: 4b3fc811-290c-4462-aaa6-208134e9e591 🔚

ὁμός homós same

One can be "continuously deformed" into the other.

For example - functions, functors. Natural transformation is a homotopy of functors.

*** /*/

<<>> <<>>

** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: f484ba96-5cb1-45d2-9265-25130f62361c :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

Universal model of computation. Which means /*/ can implement any Turing machine. Based on function abstraction and application by substituting variables and binding values.

/*/ has lambda terms:

  • variable (( x ))
  • application (( (ts) ))
  • abstraction (lambda function) (( (\lambda x . t) ))

*** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-06-12 Fri> :properties: :ID: 9ecad208-0bba-4d09-8906-5f5f76777182 :DRILL_LAST_INTERVAL: 47.0089 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 11 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.091 :DRILL_EASE: 1.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:52] 🔚

λ-cube shows the 3 dimentions of generalizations from simply typed Lambda calculus to Calculus of constructions.

\additional

#+caption: \lambda-cube: degrees of generalizaitions of the type systems #+name: img--lambda-cube-axis \begin{tikzcd} {Polymorphic \ types} \ & {Type \ opertations} \ 0 \arrow[uu] \arrow[ur] \arrow[rr] & & {Dependent \ types} \end{tikzcd}

#+caption: The \lambda-cube. The generalization of type systems: from \lambda-Calculus to Calculus of Constructions #+name: img--lambda-cube \begin{tikzcd}[row sep=scriptsize,column sep=scriptsize] & \lambda \omega \arrow[rr] \arrow[from=dd] & & \lambda C \ \lambda 2 \arrow[ur] \arrow[rr, crossing over] & & \lambda P 2 \arrow[ur] \ & \lambda \underline{\omega} \arrow[rr] & & \lambda P \underline{\omega} \arrow[uu] \ \lambda \arrow[rr] \arrow[uu] \arrow[ur] & & \lambda P \arrow[uu, crossing over] \arrow[ur] \end{tikzcd}

Each dimension of the cube corresponds to extensions (a new type of relation of objects depending on objects):

#+caption: Three degrees of type systems generalizations #+name: tab--lambda-calculus-generalizations #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Denotation | Name | Programming | New type of relations | |------------+-------------------+-------------------------------------------+--------------------------| | 2 | Polymorphic types | First-class polymorphism of types | Terms depending on types | | \omega | Type operation | Type class, type families | Types depending on types | | P | Dependent types | Higher-rank polymorphism, dependent types | Types depending on terms |

#+caption: \lambda-cube: Names of the type systems #+name: tab--lambda-calculus-names #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Denotation | Logical system | |------------------------+--------------------------------------------| | ( \lambda\to ) | (First Order) Propositional Calculus | | ( \lambda2 ) | Second Order Propositional Caculus | | ( \lambda\omega ) | Weakly Higher Order Propositional Calculus | | ( \lambda \underline{\omega} ) | Higher Order Propositional Calculus | | ( \lambda P ) | (First Order) Predicate Logic | | ( \lambda P 2 ) | Second Order Predicate Calculus | | ( \lambda P \undeline{\omega} ) | Weak Higher Order Predicate Calculus | | ( \lambda C ) | Calculus of Constructions |

**** /*/

<<<λ-cube>>> <<<\lambda-cube>>>

*** <<>> :drill: :properties: :ID: 857ef4b3-f3e6-4065-aac4-fd3607ed5284 🔚

Function of Lambda calculus. ( \lambda x y.x^2 + y^3 ) ^^ ^ ^ || | __variable || __variable || (_____) || ___BODY || | _parameter _parameter () ____HEAD

**** /*/

<<>>

**** <<>> :drill: :properties: :ID: c3a9e8dd-b5e9-44ff-88c5-e83d00330964 🔚

Lambda function that is not binded to any name.

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: c24534d9-0a6b-4e76-9925-bc25496bbfdd 🔚

Replace sequenced lambda functions into single function taking sequence/product of values as argument.

*** <<<\beta-reduction>>> :drill: SCHT: <2020-05-21 Thu> :properties: :ID: 09ff04bc-e52b-47e9-9a9e-a23bd437fb75 :DRILL_LAST_INTERVAL: 169.2439 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-04 Wed 01:15] 🔚

Equation of a parameter to a bound variable, then reducing parameter from the head.

**** /*/

<<<\beta reduction>>> <<>> <<>>

**** <<<\beta-normal form>>> :drill: SCHT: <2020-05-10 Sun> :properties: :ID: 56b65c7e-f063-4614-b2c7-916ff446ab80 :DRILL_LAST_INTERVAL: 163.321 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:08] 🔚

No beta reduction is possible.

***** /*/

<<<\beta normal from>>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-05-09 Sat> :properties: :ID: 6c93585b-5ba5-4a38-ae39-2f7dc718390b :DRILL_LAST_INTERVAL: 60.7183 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 13:10] 🔚

Extends the Curry–Howard correspondence to the proofs in the full intuitionistic predicate calculus (includes proofs of quantified statements). Type theory, typed programming language, and constructivism (phylosophy) foundation for mathematics. Directly relates to Coq programming language.

**** /*/

<<<<<>>>>>

*** <<<Curry–Howard correspondence>>> :drill: SCHT: <2020-08-08 Sat> :properties: :ID: 8b3e318d-242b-41ad-a16c-20d950177f5d :DRILL_LAST_INTERVAL: 169.2382 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:15] 🔚

Equivalence of {First-order logic, computer programming, Category theory}. They represent each-other, possible in one - possible in the other, so all the definitions and theorems have analogues in other two.

Gives a ground to the equivalence of computer programs and mathematical proofs.

Lambek added analogue to Cartesian closed category, which can be used to model logic and type theory.

#+caption: Table of basic correspondence #+name: tab--table-of-basic-correspondence #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Logic | Type | Category | |-------+-------------------------+----------| | True | () (any inhabited type) | Terminal | | False | Void | Initial | | a \land b | (a, b) | a \times b | | a \lor b | (a \vert b) | a \vert b | | a \Rightarrow b | a \to b | b^{a} |

Algebra correspondence to types:

( a^{b \ + \ c}^{} ) ~ =( b | c \to a)= ( a^{b} \times a^{c} ) ~ =(b \to a, c \to a)=

( a^{b^{c} }) ~ =(c \to b \to a)= ( a^{b \times c} ) ~ =((b, c) \to a)=

**** /*/

<<<Curry–Howard isomorphism>>> <<>>

*** <<>> :drill: SCHT: <2020-07-05 Sun> :properties: :ID: 4f8d7c52-f114-40ad-869e-e1ab4fdafc37 :DRILL_LAST_INTERVAL: 97.96 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.375 :DRILL_EASE: 2.96 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 20:00] 🔚

Translating the evaluation of a multiple argument function (or a tuple of arguments) into evaluating a sequence of functions, each with a single argument.

**** /*/

<<>>

*** <<<Hindley–Milner type system>>> :drill: SCHT: <2020-06-24 Wed> :properties: :ID: 67b414eb-6659-455f-bbb5-cb507c643567 :DRILL_LAST_INTERVAL: 152.4691 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.333 :DRILL_EASE: 1.94 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-01-23 Thu 23:06] 🔚

Classical type system for the Lambda calculus with Parametric polymorphism and Type inference. Types marked as polymorphic variables, which enables type inference over the code.

**** /*/

<<>> <<>> <<<Damas–Hindley–Milner>>>

*** <<>> :drill: SCHT: <2020-07-22 Wed> :properties: :ID: 11776f99-f2e5-46fd-a566-8e08060fd7f0 :DRILL_LAST_INTERVAL: 153.0287 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:31] 🔚

Take out something from a structure, make simplier.

See Beta reduction

**** /*/

<<>>

*** <<<\beta-\eta normal form>>> :drill: SCHT: <2020-05-26 Tue> :properties: :ID: 0240a6dc-9667-4558-b138-3423930eafe6 :DRILL_LAST_INTERVAL: 242.2089 :DRILL_REPEATS_SINCE_FAIL: 4 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.25 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-09-27 Fri 20:06] 🔚

All \beta-reduction and \eta-abstraction are done in the expression.

**** /*/

<<>> <<>>

*** <<<\eta-abstraction>>> :drill: SCHT: <2020-06-23 Tue> :properties: :ID: c385db49-d92d-4b80-85b9-ecd8b786671e :DRILL_LAST_INTERVAL: 180.6805 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:38] 🔚

( (\lambda x.Mx) \xleftarrow[\eta]{} M )

#+begin_src haskell \ x -> g . f $ x \ x -> g . f --eta-abstraction #+end_src

**** /*/

<<<\eta-reduction>>> <<<\eta-conversion>>> <<<\eta abstraction>>> <<<\eta reduction>>> <<<\eta conversion>>> <<>> <<>> <<>> <<>> <<>> <<>>

*** <<>> See Lambda calculus (Lambda terms) and Expression. In majority cases meaning some Lambda function.

** <<>> :drill: SCHT: <2020-06-07 Sun> :properties: :ID: 10f782ae-17e5-434e-8d2e-ee8ee3f9b530 :DRILL_LAST_INTERVAL: 195.0324 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:18] 🔚

Calculation into output value. Can have zero & more inputs.

*** <<>> :drill: :properties: :ID: 15c1200e-1ba8-47b1-816a-c88be1134edf 🔚

Nullary operation.

Also see: Type constant.

*** <<>> :drill: SCHT: <2020-05-25 Mon> :properties: :ID: f7cf1edb-834b-4505-874b-c7e8acc6d547 :DRILL_LAST_INTERVAL: 241.1306 :DRILL_REPEATS_SINCE_FAIL: 4 :DRILL_TOTAL_REPEATS: 3 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-09-27 Fri 19:57] 🔚

( \forall (a,b) \in S, \exists P(a,b)=f(a,b): S \times S \to S )

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-10-10 Sat> :properties: :ID: ad158f22-64c6-44c6-b140-4fc5c2b065f7 :DRILL_LAST_INTERVAL: 269.6572 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:01] 🔚

Denotation symbol/name for the operation.

**** <<>> :drill: :properties: :ID: 48503777-55e0-4c6e-8675-f220bb2c11c8 🔚

Shift operator defined by Lagrange through Differential operator. ( T^{t} , = , e^{t{\frac{d}{dx}}} )

***** /*/

Shift

**** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 1ffad9d0-5207-422f-b979-8118bbcba152 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:51] 🔚

Denotation. ( \frac{d}{dx}, , D, , D_{x}, , \partial_{x}. ) Last one is partial.

( e^{t{\frac{d}{dx}}} ) - Shift operator.

***** /*/

<<>>

*** <<>> :drill: SCHT: <2020-08-06 Thu> :properties: :ID: 6de70cc8-f8a0-461f-ae1a-0a8ead07799b :DRILL_LAST_INTERVAL: 249.5633 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:14] 🔚

Form of writing of operator or function in-between variables for application.

For priorities see Fixity.

*** <<>> :drill: SCHT: <2020-06-15 Mon> :properties: :ID: b8e36421-2fbb-4c67-881d-e40e105f73c1 :DRILL_LAST_INTERVAL: 53.9107 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.75 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:15] 🔚

Declares the presedence of action of a function/operator.

Funciton application has presedence higher then all infix operators/functions (virtually giving it a priority 10).

#+caption: Haskell operators priority and fixity association #+name: tab--haskell-operator-priority-fixity-association #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | P | L | Non | R | |----+--------+-------------------+----------| | 10 | | | F.A. | | 9 | !! | | . | | 8 | | | ^ ^^ ** | | 7 | */ div | | | | 6 | +- | | | | 5 | | | : , ++ | | 4 | | elem | | | 3 | | | && | | 2 | | | OR | | 1 | >> >>= | | | | 0 | | | $ $! seq |

Any operator lacking a fixity declaration is assumed to be infixl 9.

**** /*/

<<>> <<>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-07-18 Sat> :properties: :ID: 403807c4-a2de-47ca-bdee-96b8b47994c2 :DRILL_LAST_INTERVAL: 232.4135 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:08] 🔚

// is the value with which operation always yelds Zero value. ( zero, n \in C : \forall n, zeron=zero )

/*/ is distinct from Identity value.

*** <<>> :drill: SCHT: <2021-04-06 Tue> :properties: :ID: 2e4ac590-3b8a-4c70-9229-a83d30f6b149 :DRILL_LAST_INTERVAL: 360.486 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-11 Sat 20:35] 🔚

Establishing equality between two objects.

Most often:

  • equating variable to a value.
  • equating parameter of a function to an argument (variable/value/function). This term often is equated to applying argument to a function, which includes \beta-reduction.

**** /*/

<<>> <<>> <<>>

*** <<>> :drill: SCHT: <2021-10-01 Fri> :properties: :ID: 461111ea-4124-427f-bfc6-f83212a07951 :DRILL_LAST_INTERVAL: 422.064 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:20] 🔚

Binding name to expression.

*** <<>> :drill: SCHT: <2020-05-11 Mon> :properties: :ID: aba69f2c-bd70-46eb-9cd3-a215fdd37737 :DRILL_LAST_INTERVAL: 62.8408 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 13:10] 🔚

Sort-out & send.

*** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 1b2053a3-24c8-47fe-a3a0-3974c6a3472a :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:55] 🔚

For FP see Bind.

** <<>> :drill: SCHT: <2020-07-09 Thu> :properties: :ID: af01cb45-6b61-4b9f-bac6-390a2ec82a5c :DRILL_LAST_INTERVAL: 121.6109 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.168 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:59] 🔚

Bijective function from domain to itself.

Domain & permutation functions & function composition form a group.

** <<>> :drill: SCHT: <2020-05-25 Mon> :properties: :ID: 4a6fc5de-f277-4bb9-afd0-6dcb3698b317 :DRILL_LAST_INTERVAL: 181.5072 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.143 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:20] 🔚

Paradigm where function only describes the morphism itself.

Process of converting function to point-free. If brackets /()/ can be changed to /$/ then $ equal to composition: #+begin_src haskell \ x -> g (f x) \ x -> g $ f x \ x -> g . f $ x \ x -> g . f --eta-abstraction

\ x1 x2 -> g (f x1 x2) \ x1 x2 -> g $ f x1 x2 \ x1 x2 -> g . f x1 $ x2 \ x1 -> g . f x1 #+end_src

*** /*/

<<>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-12-22 Tue> :properties: :ID: 76123e3b-3042-4112-beaf-7f281c13e58a :DRILL_LAST_INTERVAL: 306.1258 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.715 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:12] 🔚

#+begin_src haskell (.).(.) :: (b -> c) -> (a1 -> a2 -> b) -> a1 -> a2 -> c #+end_src

Composition of compositions =(.).(.)=. Allows to compose-in a binary function =f1(c) (.).(.) f2(a,b)=. #+begin_src haskell \ f g x y -> f (g x y) #+end_src

**** /*/

<<<.) .>>> <<<(.).(.)>>> <<>>

*** <<>> :drill: SCHT: <2020-08-09 Sun> :properties: :ID: 1d5d1b4c-2390-4ebd-b79c-23ed3deec10e :DRILL_LAST_INTERVAL: 3.86 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 13 :DRILL_FAILURE_COUNT: 6 :DRILL_AVERAGE_QUALITY: 2.923 :DRILL_EASE: 2.38 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:27] 🔚

#+begin_src haskell swing :: (((a -> b) -> b) -> c -> d) -> c -> a -> d swing = flip . (. flip id) swing f = flip (f . runCont . return) swing f c a = f ($ a) c #+end_src

*** <<>> :drill: :properties: :ID: 4813e27d-4ac4-415f-95c5-323b605c1de6 🔚

#+begin_src haskell f >>= a . b . c =<< g #+end_src

** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 83a22f3c-9140-490c-9390-85319566a443 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:51] 🔚

\textgreek{πολύς} /polús/ many

At once several forms.

In Haskell - abstract over data types.

/*/ types:

*** /*/

<<>>

*** <<>> :drill: SCHT: <2020-06-23 Tue> :properties: :ID: cba719c7-40cf-4fbe-841f-b52909f552b7 :DRILL_LAST_INTERVAL: 57.5224 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:51] 🔚

Extending polymorphism to work with unlifted and lifted types.

*** <<>> :drill: :properties: :ID: 0f4d5c48-f692-4a1f-8368-b0dab65f6d2f 🔚

Abstracting over data types by parameter.

/In most languages named as 'Generics' (generic programming)./

Types:

**** <<>> :drill: SCHT: <2020-07-11 Sat> :properties: :ID: 5fc7f989-ce41-4150-8301-3328b30fd206 :DRILL_LAST_INTERVAL: 76.346 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 15 :DRILL_FAILURE_COUNT: 4 :DRILL_AVERAGE_QUALITY: 3.266 :DRILL_EASE: 2.24 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:56] 🔚

Parametric polymorphism by type variables of rank-1 types.

***** /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2020-06-19 Fri> :properties: :ID: f415a2f4-8f66-483d-9b75-70b3e5fe4b89 :DRILL_LAST_INTERVAL: 53.6783 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:51] 🔚

It is property chosen for Haskell type system. Haskell is based on Hindley-Milner type system, it is let-bound. To have strict type inference with /*/ - if =let= and =where= declarations are polymorphic - \lambda declarations - should be not.

See: Good: In Haskell parameters bound by lambda declaration instantiate to only one concrete type.

**** <<>> :drill: :properties: :ID: ad855e03-3fc1-4875-b28c-82b85987eccb 🔚

Constrained Parametric polymorphism.

***** <<>> :drill: SCHT: <2020-05-18 Mon> :properties: :ID: d98c11bf-35fd-46ae-803f-28df28c37a54 :DRILL_LAST_INTERVAL: 166.3114 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-04 Wed 01:19] 🔚

Artificial constrained polymorphism dependent on incoming data type. It is interface dispatch mechanism of data types. Achieved by creating a type class instance functions.

/Commonly known as overloading./

******* /*/

<<>> <<>> <<>> <<>> <<>>

**** <<>> :drill: SCHT: <2020-12-12 Sat> :properties: :ID: 4d1d48af-a46a-4632-88f2-fff7643f0d7e :DRILL_LAST_INTERVAL: 234.0287 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.4 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:36] 🔚

/*/ allows type τ entities with polymorphic types that can contain type τ itself. ( T = \forall X. X \to X : ; T \in X \vDash T \in T )

The most powerful form of parametric polymorphism. See: Impredicative.

This approach has Girard's paradox (type systems Russell's paradox).

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: 80de6f6a-d231-4296-9f73-4caa384e65b9 🔚

Means that polymorphic types can apper within other types (types of function). There is a cases where higher-rank polymorphism than the a Ad hoc - is needed. For example where ad hoc polymorphism is used in constraints of several different implementations of functions, and you want to build a function on top - and use the abstract interface over these functions. #+begin_src haskell -- ad-hoc polymorphism f1 :: forall a. MyType Class a => a -> String == f1 :: MyType Class a => a -> String f1 = -- ...

-- higher-rank polymorphism f2 :: Int -> (forall a. MyType Class a => a -> String) -> Int f2 = -- ... #+end_src By moving =forall= inside the function - we can achive higher-rank polymorphism.

From: https://news.ycombinator.com/item?id=8130861 #+begin_src text Higher-rank polymorphism is formalized using System F, and there are a few implementations of (incomplete, but decidable) type inference for it

  • see e.g. Daan Leijen's research page 1 about it, or my experimental implementation [2] of one of his papers. Higher-rank types also have some limited support in OCaml and Haskell. #+end_src

Useful example aslo a ST-Trick monad.

***** /*/

<<>>

*** <<>> :drill: :properties: :ID: 9e587f6d-08ed-406c-9bf0-3af96cb8eb49 🔚

Allows to declare usage of a Type and all of its Subtypes. T - Type S - Subtype of Type <: - subtype of ( S <: T = S \le T )

Subtyping is: If it can be done to T, and there is subtype S - then it also can be done to S. ( S <:T : ; f^{T \to X} \Rightarrow f^{S \to X} )

*** <<>> :drill: SCHT: <2020-05-09 Sat> :properties: :ID: 18e7413e-72cc-4ab6-8c9e-1591f4b00606 :DRILL_LAST_INTERVAL: 41.4414 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.18 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 20:00] 🔚

NOTE: 2019-03-11: Currently WIP in https://github.com/ghc-proposals/ghc-proposals/pull/180

Is a lot like Subtype polymorphism, but alings itself on allowence (with | r) of subtypes and types with requested properties. #+begin_src haskell printX :: { x :: Int | r } -> String printX rec = show rec.x

printY :: { y :: Int | r } -> String printY rec = show rec.y

-- type is inferred as {x :: Int, y :: Int | r } -> String printBoth rec = printX rec ++ printY rec #+end_src

*** <<>> :drill: :properties: :ID: 4658489e-5516-44d3-b9ab-06f9077657f5 🔚

Achieved using a phantom type argument in the data type declaration. #+begin_src haskell ;; * -> * data Proxy a = ProxyValue #+end_src Then, by default the data type can be inhabited and fully work being partially defined. But multiple instances of kind polymorphic type can be distinguished by their particular type.

Example is the Proxy type: #+begin_src haskell data Proxy a = ProxyValue

let proxy1 = (ProxyValue :: Proxy Int) -- * :: Proxy Int let proxy2 = (ProxyValue :: Proxy a) -- * -> * :: Proxy a #+end_src

*** <<>> :drill: :properties: :ID: 4a8f87d0-99ee-40e7-8a02-92b97540f9b4 🔚

Leverages linear types. For exampe - if fold over a dynamic array:

  1. In basic Haskell - array would be copied at every step.
  2. Use low-level unsafe functions.
  3. With Linear type function we guarantee that the array would be used only at one place at a time.

So, if we use a function (* -o * -o -o *) in foldr - the fold will use the initial value only once.

** <<>> :drill: SCHT: <2020-06-21 Sun> :properties: :ID: d8df7582-1e97-4cf9-9d0d-146ede21ad1f :DRILL_LAST_INTERVAL: 209.6274 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-11-24 Sun 02:35] 🔚

Complex expression is determined by the constituent expressions and the rules used to combine them.

If the meaning fully obtainable form the parts and composition - it is full, pure compositionality.

If there exists composed idiomatic expression - it is unfull, unpure compositionality, because meaning leaks-in from the sources that are not in the composition.

*** /*/

<<>> <<>> <<>>

** <<>> :drill: SCHT: <2021-01-18 Mon> :properties: :ID: b7cbd6cd-5739-431a-9eae-5922e60dff81 :DRILL_LAST_INTERVAL: 315.4885 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.571 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:56] 🔚

Given the same input return the same output. So: // expression can be replaced with its corresponding resulting value without change for program's behavior. // functions are pure.

*** /*/

<<>>

** <<>> :drill: SCHT: <2020-06-24 Wed> :properties: :ID: f47d8882-a0eb-4956-9b87-56ac0c20d069 :DRILL_LAST_INTERVAL: 63.1985 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:17] 🔚

Philosophical study of meaning. Meaning of symbols, words.

*** <<>> :drill: SCHT: <2020-06-17 Wed> :properties: :ID: df2cb6cf-0eb7-4756-945e-a08d7246245b :DRILL_LAST_INTERVAL: 55.6254 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:12] 🔚

Constructing proofs from axiomatic semantics, verifying procedures and their properties.

Good to solve in-point localized tasks.

Process of working with abstractions.

**** <<>> :drill: SCHT: <2020-06-12 Fri> :properties: :ID: 56fadaf0-586a-4e26-a216-c39fcca004ea :DRILL_LAST_INTERVAL: 75.2144 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.7 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:59] 🔚

/arguere/ make clearmake known, to prove, to shine

/*/ - evidence, proof, statement that results systematic changes.

***** <<>> :drill: :properties: :ID: 42c01d98-580d-45c6-b602-119eb92b6b42 🔚

A value binded to the function parameter. Value/topic that the fuction would process/deal with.

Also see <<>>.

****** /*/

<<>>

***** <<>> :drill: :properties: :ID: b451a91d-1eb3-4c05-882f-23ea9a643a82 🔚

Means /it/:

  • Can be used as value.
  • Passed as an argument. From 1&2 -> /it/ can include itself.

**** <<>> :drill: SCHT: <2020-08-12 Wed> :properties: :ID: ab1fec36-4201-4970-a717-70d56aa09e1b :DRILL_LAST_INTERVAL: 173.9763 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.286 :DRILL_EASE: 2.04 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:30] 🔚

Relationship between two objects. By default it is not directed and not limited. In Set theory: some subset of a Cartesian product between sets of objects.

***** /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2020-08-15 Sat> :properties: :ID: 2d097ea7-25fb-4624-98fc-66d5c8711260 :DRILL_LAST_INTERVAL: 10.3873 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:24] 🔚

A grammar (set of production rules) that describe all possible properly composed expressions in a formal language.

Term is invented by Noam Chomsky.

***** /*/

<<>>

**** Constructive proof

Method that demonstrates object existance by showing the process of its creation.

*** <<>> :drill: SCHT: <2020-07-02 Thu> :properties: :ID: a21dabc0-cc1e-4225-b9f1-86a14e2b7a13 :DRILL_LAST_INTERVAL: 131.7758 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.333 :DRILL_EASE: 1.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:27] 🔚

Construction of objects, that describe/tag the meanings. In Haskell often abstractions that are ment (denotations), implemented directly in the code, sometimes exist over the code - allowing to reason and implement.

/*/ are composable.

Good to achive more broad approach/meaning.

Also see Abstraction.

**** <<>> :drill: SCHT: <2020-11-23 Mon> :properties: :ID: 7875b659-d137-41df-b146-6fb73f090a4e :DRILL_LAST_INTERVAL: 109.9736 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.583 :DRILL_EASE: 2.24 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:17] 🔚

abs away from, off (in absentia)

tractus draw, haul, drag

Purified generalization.

Forgeting the details (axiomatic semantics). Simplified approach. Out of sight - out of mind.

/*/ creates a new semantic level in which one can be absolutely precise (operational semantics).

It is a great did to name an abstraction (denotational semantics).

The ideal abstractions are:

  • integrative (global):
    • nothing, void, emptiness - "none", initial object
    • everything - "all", "existance", terminal object
  • differential (local):
    • point - "this", "is", "one", stasis
    • chaos - "any", "of", "many", process

They are ideal - because they are the basis, the beginning. Because you can not express any other obstractions without these.

\additional

/This is personal idea & the thought of autor of the book regarding basic abstractions particularly. Other definitions in the book basing on this are the proof that statement has some ground truth in it. There is ongoing philosophical discussion on the topics like these./

***** /*/

<<>> <<>> <<>>

***** <<>> :drill: :properties: :ID: 696ecb38-8f84-439e-8d4d-3cbb28b44c96 🔚

Abstraction that leaks details that it is supposed to abstract away.

****** /*/

<<>>

***** <<>> :drill: SCHT: <2020-05-02 Sat> :properties: :ID: db3c82b9-a7ed-42aa-afe0-18c71df636dc :DRILL_LAST_INTERVAL: 71.5171 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:45] 🔚

Absolute abstraction.

Point that additionally can have properties.

Often abstracts something, that is why it exposes external properties on abstracting something, for example some structure, maybe mathematical. In this book objects represent algebraic structures, as we are talking about Haskell and Category theory.

Objects without process are in constant state.

****** /*/

<<>> <<>> <<>>

****** <<>> :drill: :PROPERTIES: :ID: 540e4db5-274a-4c09-b886-c81fa4d4f729 :END:

Second level of absolute abstraction.

Arrow.

Can have target, can have source. Both often are objects.

Often abstracts process.

Can have properties.

Also alias in Category Theory for "morphism", thou theory emposes properties.

******* /*/ <<>> <<>>

****** <<>> :drill: SCHT: <2020-06-07 Sun> :properties: :ID: 8d7de2b2-7609-481a-837e-9887e779446f :DRILL_LAST_INTERVAL: 69.9795 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.25 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:56] 🔚

One that recieves unique arrow from every object.

( \exists ! : x \to 1 \ | \ \exists 1 \in \mathcal{C}, \ \forall x \in \mathcal{C})

/*/ is an empty sequence =()= in Haskell.

Called a /unit/, so recieves /terminal/ or /unit/ arrow.

Dual of initial object.

Denotation:

Category theory ( 1 )

Haskell #+begin_src haskell () #+end_src

****** <<>> :drill: SCHT: <2020-11-21 Sat> :properties: :ID: 8d962644-6fcd-4152-b82a-fabb9ed38f6b :DRILL_LAST_INTERVAL: 236.6905 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.571 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:59] 🔚

One that emits unique arrow into every object.

( \exists ! : \varnothing \to x \ | \ \exists \varnothing \in \mathcal{C}, \ \forall x \mathcal{C} )

If initial object is =Void= (most frequently) - emitted arrows called absurd, because they can not be called.

Dual of terminal object.

Denotation:

Category theory: ( \varnothing )

Haskell: #+begin_src haskell Void #+end_src

****** Value :drill: SCHT: <2020-05-01 Fri> :PROPERTIES: :ID: 04e4ee4a-a53e-4ce6-b58c-5a315ff077d3 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:00] :END:

2020-02-27: NOTE: Org-mode seems to break on radio target having 'Value' value.

What object abstracts. Without any object external structure (aka identity in Category Theory). So /*/ is immutable. Such herecy is called "Value semantics" and leads such things as referential transparency, functional programming and Haskell.

(Except, when you hack Haskell with explicit low-level funсtions, and start to directly mute values - then you are on your own, Haskell paradigm does not expect that.)

******* /*/ Value semantics Values

****** <<>> :drill: SCHT: <2021-01-01 Fri> :properties: :ID: e165b708-fdd2-4062-be87-b65487de4a0e :DRILL_LAST_INTERVAL: 298.9685 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-08 Sun 23:02] 🔚

Object existing out of planes, thus it can translate objects from one plane into another. /*/ can be tried to be described with knowledge existing inside planes (from projection on the plane), but representation would always be partial.

Tensor of rank 1 is a vector.

Translations with tensor can be seen as functors.

******* /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2020-06-21 Sun> :properties: :ID: bc8fb3d5-d6bf-46b3-bf5b-5955e8f05a67 :DRILL_LAST_INTERVAL: 209.6274 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-11-24 Sun 02:35] 🔚

ambi both

\textgreek{γράμμα} /grámma/ written character

Object that from different points of view has the same meaning.

While this word has two contradictory diametrically opposite usages, one was chosen (more frequent).

But it has... Both.

/TODO: For merit of differentiating the meaning about different meaning referring to Tensor as object with many meanings./

**** <<>> :drill: SCHT: <2020-08-26 Wed> :properties: :ID: f6ddbc05-f514-49e1-8906-28e67eb0866c :DRILL_LAST_INTERVAL: 269.6572 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:16] 🔚

Two of something.

**** <<>> :drill: :properties: :ID: 3fd8d537-ab00-4989-bbde-5a62a34c3bfa 🔚

/arbitrarius/ uncertain

Random, any one of.

Used as: Any one with /this/ set of properties. (constraints, type, etc.).

When there is a talk about any arbitrary value - in fact it is a talk about the generalization of computations over the set of properties.

**** <<>> :drill: :properties: :ID: 3264958f-dfb9-4dcf-9f58-9a9a588d61c9 🔚

One that has an option to fail.

**** <<>> :drill: :properties: :ID: 75553b01-1650-40f3-b87b-2e3d2afc9dc5 🔚

One that can not fail.

**** <<>> :drill: SCHT: <2020-06-15 Mon> :properties: :ID: 7585ab04-6e2e-4908-88c9-28cf2dc9a73e :DRILL_LAST_INTERVAL: 77.833 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.75 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:59] 🔚

Broader parent class.

**** <<>> :drill: SCHT: <2020-06-30 Tue> :properties: :ID: 8c2d205c-140f-4aa6-bcd4-8563433879d9 :DRILL_LAST_INTERVAL: 168.3498 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:59] 🔚

Represents existence. Denoted as empty sequence. #+begin_src haskell () #+end_src

Type =()= holds only self-representation constructor =()=, & constructor holds nothing.

Haskell code always should recieve something back, hense nothing, emptiness, void can not be theoretically addressed, practically constructed or recieved - unit in Haskell also has a role of a stub in place of emptiness, like in =IO ()=.

**** <<>> :drill: :properties: :ID: 009d9f43-81a1-4e7e-a5be-ad706a704497 🔚

Takes no entries (for example has the arity of zero). Has the trivial domain.

**** <<>> :drill: SCHT: <2020-08-18 Tue> :PROPERTIES: :ID: f4312216-c6b9-461f-bf8e-ef446a5cbcc1 :DRILL_LAST_INTERVAL: 10.764 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-08-07 Fri 10:49] :END:

Tree of syntactic elements (each node denotes construct occurring in the language/source code) that represent the full particular composed expression/implementation.

***** <<>> :drill: :PROPERTIES: :ID: c79cc094-a057-42b1-aa3d-05304de57c2e :END:

"Abstract" since does not represent every detail of the syntax (ex. parentheses), but rather concentrates on structure and content.

Widely used in compilers to check the code structure for accuracy and coherence.

****** /*/

<<>>

***** <<>>

An ordered, rooted syntax tree that represents the syntactic structure of a string according to some context-free grammar.

"Concrete" since (in contrast to "abstract") - concretely reflects the syntax of the input language.

****** /*/

<<>> <<>>

**** <<>> :drill: :properties: :ID: da9e4972-1cef-48f6-9878-8ec79302b759 🔚

/*/ an infinite sequence that forgets previous objects, and remembers only currently relevant objects.

( E \ | \ X \to (X \times A + 1) ), the set (or object) of streams on A (final coalgebra ( A_{*} ) of ( E )).

=cycle= is one of stream functions. #+begin_src haskell a = (cycle [Nothing, Nothing, Just "Fizz"]) b = (cycle [Nothing, Nothing, Nothing, Nothing, Just "Buzz"]) #+end_src

Can be:

  • indexed, timeless, with current object
  • timed: ** =[(timescale, event)]= ** =[(realtime, event)]=

Has amalgamation with Functional Reactive Programming.

**** <<>> :drill: :properties: :ID: a1c01464-061f-46a0-b08f-4b98d95714d0 🔚

Values consumed once or not used.

=x^2= consumes/uses =x= two times =(x*x)=.

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-08-11 Tue> :properties: :ID: aee54dbf-2387-403e-9589-f93bcb416963 :DRILL_LAST_INTERVAL: 99.7537 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 13 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.462 :DRILL_EASE: 2.44 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-05-03 Sun 13:09] 🔚

Non-self-referencing definition.

\additional

/Antonym - Impredicative./

**** <<>> :drill: SCHT: <2020-08-23 Sun> :properties: :ID: ac758691-4dc3-4e6c-9f18-59793263a845 :DRILL_LAST_INTERVAL: 267.3 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:16] 🔚

Specifies the quantity of specimens.

Two most common quantifiers ( \forall ) (Forall) and ( \exists ) (Exists). ( \exists ! ) - one and only one (exists only unique).

Turns predicate into statement.

***** /*/

<<>> <<>> <<>>

***** <<>> :drill: SCHT: <2020-08-16 Sun> :properties: :ID: 922b622a-38c4-4079-a1e0-61ff010f7a10 :DRILL_LAST_INTERVAL: 160.3167 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-03-08 Sun 23:04] 🔚

In Haskell type variables are always introduced with it, explicitly or implicitly.

=forall= means that it will unify/fixed to any type that consumer may choose.

Permits to not infer the type, but to use any that fits. The variant depends on the LANGUAGE option used:

  • ScopedTypeVariables
  • RankNTypes
  • ExistentialQuantification

****** /*/

<<>>

**** <<>> :drill: SCHT: <2021-01-17 Sun> :properties: :ID: bc244256-751d-4205-857e-368a45580884 :DRILL_LAST_INTERVAL: 315.4885 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-08 Sun 22:49] 🔚

// - something having a meaning that can not be derived from the conjoined meanings of // constituents. Meaning can be special for language speakers or human with particular knowledge.

/*/ can also mean applicative functor, people better stop making idiom from the term "idiom".

***** /*/

<<>> <<>>

**** <<>> :drill: SCHT: <2020-06-11 Thu> :properties: :ID: 0f1f3bcf-df47-44de-8320-03ed8f18dc38 :DRILL_LAST_INTERVAL: 74.2598 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 9 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.111 :DRILL_EASE: 2.72 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:56] 🔚

Self-referencing definition.

\additional

/Antonym - Predicative./

*** <<>> :drill: SCHT: <2020-07-01 Wed> :properties: :ID: 18d65b73-cec0-49ed-868a-a97d73abe329 :DRILL_LAST_INTERVAL: 70.3096 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.24 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:43] 🔚

Empirical process of studying something complex by finding and analyzing true statements about it.

Good for examining interconnections.

**** <<>> :drill: :properties: :ID: ead179a8-e4a5-46c1-a324-30e8e4dd15fd 🔚

Something has a property in the real world, and property always yealds an axiom (<<>>) for something.

Meaningful abstraction denotation always defines through properties (axioms for that definition).

Abstraction forms nicely around the boundaries where the particular properties spread. Properties inside abstraction may have emergence effect (combination of properties result into bigger property), so in that way abstracting them simplifies outside picture, as abstraction hides plethora of internal properties and exposes only emergent properties.

In Haskell under property/law most often properties of algebraic structures.

There property testing wich does what it says.

***** /*/

<<>>

***** <<>> :drill: :properties: :ID: 0985ce00-f1cd-441b-9d49-7c02b51298bf 🔚

Joined with a common purpose.

( P(a,P(b,c)) \equiv P(P(a,b),c) \ | \ \forall (a,b,c) \in S ),

/*/ - the order (priority) of executions of actions can be arbitrary, as long as in the end the chain is the same - they would produce the same result. Any priority of execution of the parts of the operation chain would produce the same result, as the chain of operations is in fact flat.

Property that determines how operators of the same precedence are grouped, (in computer science also in the absence of parentheses).

Etymology: Latin /associatus/ past participle of /associare/ "/join with/", from assimilated form of /ad/ "/to/" + /sociare/ "/unite with/", from /socius/ "/companion, ally/" from PIE /*sokw-yo-/, suffixed form of root /*sekw-/ "/to follow/".

In Haskell /*/ has influence on parsing when compounds have same fixity.

****** /*/

<<>> <<>> <<>>

****** <<>> :drill: SCHT: <2020-05-31 Sun> :properties: :ID: ccf220ac-e213-44ce-9d1b-ccd87f8b9a9a :DRILL_LAST_INTERVAL: 100.1276 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.917 :DRILL_EASE: 2.96 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:17] 🔚

/*/ - the operations can be done in groups the direction of actions can be from the beginning towards the end.

Example: In lambda expressions same level parts follow grouping from left to right. ( (\lambda x . x)(\lambda y . y)z \equiv ((\lambda x . x)(\lambda y . y))z )

******* /*/

<<>>

****** <<>> :drill: SCHT: <2020-12-24 Thu> :properties: :ID: 74124ae3-4d72-48cc-856a-c0aaddbf49fc :DRILL_LAST_INTERVAL: 270.7993 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-28 Sat 19:18] 🔚

/*/ - the operations groups the actions from the end towards the beginning.

Example: #+begin_src haskell [1,2,3] = 1 : 2 : 3 : [] = 1 : (2 : (3 : [])) #+end_src

******* /*/

<<>>

****** <<>> :drill: SCHT: <2020-06-09 Tue> :properties: :ID: ea9d8f41-bb29-49ca-9ae7-3c1bc92d0869 :DRILL_LAST_INTERVAL: 44.287 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.2 :DRILL_EASE: 2.22 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:50] 🔚

Operations can't be chained.

Often is the case when the output type is incompatible with the input type.

******* /*/

<<>>

***** <<>> :drill: SCHT: <2020-08-07 Fri> :properties: :ID: c880a358-f545-4e2e-9c44-7c80ca038ac1 :DRILL_LAST_INTERVAL: 225.56 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:37] 🔚

( \beta\alpha\sigma\iota\varsigma ) - stepping

The initial point, unreducible axioms and terms that spawn a theory. AKA see Category theory, or Euclidian geometry basis.

****** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: d1f3dc34-f7b9-4284-b417-16b26860248a :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:03] 🔚

The property of basis, in which if new basis is a linear combination of the prior basis, and the change of basis inverse-proportional for the description of a Tensors in this basisis.

Denotation: Components for contravariant basis denoted in the upper indices: ( V^{i} = x )

The inverse of a covariant transformation is a contravariant transformation. Good example of contravarint is: When a vector should stay absolute invariant even when basis changes, that is to say it represents the same geometrical or physical object having the same magnitude and direction as before - then those absolute invariant components relate to basis under the contravariant rule.

******* /*/

<<>> <<>> - More inline term is Contravariant cofunctor

****** <<>> :drill: SCHT: <2020-05-05 Tue> :properties: :ID: 90eb2e6f-8695-446f-a7e8-ccac7f47dbee :DRILL_LAST_INTERVAL: 56.6607 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.25 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 13:09] 🔚

The property of basis, in which if new basis is a linear combination of the prior basis, and the change of basis proportional for a descriptions of tensors in basisis.

Denotation: Components for covariant basis denoted in the upper indices: ( V_{i} = x )

******* /*/

<<>> <<>>

***** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 8d6b1e5e-a054-4757-b9a8-bb40c07d79fd :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:03] 🔚

( \forall (a,b) \in S : ; P(a,b) \equiv P(b,a) )

All processes that are independent from one-another, but on manifastation of their results - their combination result into something (create curcomstances for something) - are commutative.

****** /*/

<<>> <<>>

***** <<>> :drill: :properties: :ID: 1c821458-dd2b-4112-aa32-416e27b161ba 🔚

First application gives a result. Then same operation can be applied multiple times without changing the result. Example: Start and Stop buttons on machines.

****** /*/

<<>> <<>>

***** <<>> :drill: SCHT: <2020-08-18 Tue> :properties: :ID: 6ea04559-091b-4151-b190-e97a88bb317a :DRILL_LAST_INTERVAL: 10.764 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-08-07 Fri 10:35] 🔚

In algebra:

  • set S

  • two binary operators + \times

  • ( x \times (y + z) = (x \times y) + (x \times z) ) - \times is left-distributive over +

  • ( (y + z) \times x = (y \times x) + (z \times x) ) - \times is right-distributive over +

  • left-&right-distributive - \times is distributive over +

If \times has commutative property - it is two-side distributive over +.

****** /*/

<<>>

**** <<>> :drill: :properties: :ID: 3168c887-3120-40d8-ba68-2d25bae7f37f 🔚

Observable action.

**** <<>> :drill: :PROPERTIES: :ID: efecab45-bf59-4193-8672-a45d06493368 :END:

When systems have exact external behaviour so for observer they are the same.

Binary relation between state transition systems that match each other's moves.

***** /*/

<<>>

**** <<>>

Operation that is axiomatic (can't be expressed from other given axioms of the system).

In program languages it is most probably implemented by lower-level programming.

In Haskell they are provided by GHC.

More: [[https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/prim-ops][GHC Wiki/prim-ops]].

***** /*/

<<>>

*** <<>> :drill: SCHT: <2020-08-02 Sun> :properties: :ID: 2392f66d-e924-49ef-bc22-93c844f74683 :DRILL_LAST_INTERVAL: 163.7043 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:33] 🔚

Words that name objects of reality and their qualities.

*** Ancient Greek and Latin prefixes :drill: SCHT: <2021-01-05 Tue> :properties: :ID: 773bbd3b-bf0f-41c2-a61b-9bb36381bd54 :DRILL_LAST_INTERVAL: 258.1744 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:23] 🔚

#+caption: Ancient Greek and Latin prefixes #+name: tab--ancient-greek-latin-prefixes #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Meaning | Greek prefix | Latin prefix | |-------------------------+-------------------+----------------------| | above, excess | hyper- | super-, ultra- | | across, beyond, through | dia- | trans- | | after | | post- | | again, back | | re- | | against | anti- | contra-, (in-, ob-) | | all | pan | omni- | | around | peri- | circum- | | away or from | apo-, ap- | ab- (or de-) | | bad, difficult, wrong | dys- | mal- | | before | pro- | ante-, pre- | | between, among | | inter- | | both | amphi- | ambi- | | completely or very | | de-, ob- | | down | | de-, ob- | | four | tetra- | quad- | | good | eu- | ben-, bene- | | half, partially | hemi- | semi- | | in, into | en- | il-, im-, in-, ir- | | in front of | pro- | pro- | | inside | endo- | intra- | | large | macro- | (macro-, from Greek) | | many | poly- | multi- | | not* | a-, an- | de-, dis-, in-, ob- | | on | epi- | | | one | mono- | uni- | | out of | ek- | ex-, e- | | outside | ecto-, exo- | extra-, extro- | | over | epi- | ob- (sometimes) | | self | auto-, aut-,auth- | ego- | | small | micro- | | | three | tri- | tri- | | through | dia- | trans- | | to or toward | epi- | ad-, a-, ac-, as- | | two | di- | bi- | | under, insufficient | hypo- | sub- | | with | sym-, syn- | co-. com-, con- | | within, inside | endo- | intra- | | without | a-, an- | dis- (sometimes) |

**** /*/

<<>> <<>>

** <<>> :drill: SCHT: <2021-01-02 Sat> :properties: :ID: 3065b5ef-e7af-41af-a46e-201ced7f3c28 :DRILL_LAST_INTERVAL: 316.8159 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:09] 🔚

Well-defined collection of distinct objects.

*** /*/

<<>> <<>>

*** <<>> :drill: :properties: :ID: 82ede893-3662-456f-ba2a-0cd1c9bab5a6 🔚

( {\displaystyle \forall X\left[\varnothing \notin X\implies \exists f\colon X\rightarrow \bigcup X\quad \forall A\in X,(f(A)\in A)\right]} )

Simple version:

For any inhabited sets, exists a set with exactly one element in common with each of them.

... from more wide-known variant:

Given any set X of pairwise disjoint non-empty sets, there exists at least one set C that contains exactly one element in common with each of the sets in X.

Most official formalization:

For any set X of nonempty sets, there exists a choice function f defined on X.

*** <<>> :drill: SCHT: <2020-06-03 Wed> :properties: :ID: 33bc1a45-7af7-4320-ac6a-2bc785b7afd9 :DRILL_LAST_INTERVAL: 52.8329 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.4 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-11 Sat 21:01] 🔚

  1. Set which complements an open set.

  2. Is form of Closed-form expression. Set can be closed in under a set of operations.

*** <<>> :drill: SCHT: <2020-08-05 Wed> :properties: :ID: fdf831a3-e05a-4bec-8849-1900ad7d9ce3 :DRILL_LAST_INTERVAL: 166.7517 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:33] 🔚

For some set ( \mathcal{S} ), the power set (( \mathcal{P(S)} )) is a set of all subsets of ( \mathcal{S} ), including ( {} ) & ( \mathcal{S} ) itself.

Denotation: ( \mathcal{P(S)} )

*** <<>> :drill: SCHT: <2020-05-28 Thu> :properties: :ID: cd966fe0-f42d-4b75-b388-85649eacc84f :DRILL_LAST_INTERVAL: 154.8369 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 11:58] 🔚

Singleton - unit set - set with exactly one element. Also 1-sequence.

*** <<<Russell's paradox>>> :drill: :properties: :ID: 65436fce-197e-40fd-8eea-a36f54a071fd 🔚

If there exists normal set of all sets - it should contain itself, which makes it abnormal.

*** <<>> :drill: SCHT: <2020-07-15 Wed> :properties: :ID: 1c2c6ec3-701a-4803-a73a-7564b4ffb298 :DRILL_LAST_INTERVAL: 80.2977 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.75 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:52] 🔚

( \mathcal{A} \times \mathcal{B} \equiv \sum^{\forall}{(a,b)} \ | \ \forall a \in \mathcal{A}, \forall b \in \mathcal{B} ). Operation, returns a set of all ordered pairs ( (a, b) )

Any function, functor is a subset of Cartesian product.

( \sum{(elem \in (\mathcal{A} \times \mathcal{B}))} = cardinality^{A \times B} )

Properties:

  • not associative
  • not commutative

**** <<>> :drill: SCHT: <2020-05-01 Fri> :PROPERTIES: :ID: 6c5bf63f-4c92-42c4-a8f2-de638e01effb :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:00] :END:

Subset of the cartesian product of two sets.

***** /*/ <<>>

*** Zermelo–Fraenkel set theory :drill: :properties: :ID: bf259cf1-ca8e-49fd-9c20-cf3fbd2e597c 🔚

Modern set theory. Axiomatic system free of paradoxes such as Russell's paradox and at the same time preserves the logical language of scientific works.

**** /*/

<<>>

** <<>> :drill: :properties: :ID: 07ea5b8e-05ee-4824-b690-455ab4918d77 🔚

*** <<>>

Since property yealds the according law, family of unit tests for the property can be abstracted into the function that test the law.

Unit test cases come from generator, and test the law empirically, but repeatedly and automatically.

**** <<>>

Property corresponds to the according law. In property testing you need to think additionally about generator and shrinking.

**** <<>>

#+caption: Property testing types #+name: tab--property-testing-type #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | | Exhaustive | Randomized | Unit test (Single sample) | |--------------------------+--------------------------------------+--------------------------------------+---------------------------| | Whole set of values | Exhaustive property test | Randomised property test | One element of a set | | Special subset of values | Exhaustive specialised property test | Randomised specialised property test | One element of a set |

**** <<>> #+begin_src text Seed | v Gen A -> A ^ | Size #+end_src

Seed allows reproducibility. There is anyway a need to have some seed. Size allows setting upper bound on size of generated value. Think about infinity of list.

After failed test - shrinking tests value parts of contrexample, finds a part that still fails, and recurses shrinking.

***** /*/

<<>>

***** Custom generator When sertain theorem only works for a specific set of values - the according generator needs to be produced.

#+begin_src haskell arbitrary :: Arbitrary a => Gen a suchThat :: Gen a -> (a -> Bool) -> Gen a elements :: [a] -> Gen a #+end_src

**** <<>> Often it is convinient to abstract testing of same function properties:

It can be done with (aka TestSuite combinator): #+begin_src haskell -- Definition {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE AllowAmbiguousTypes #-} eqSpec :: forall a. Arbitrary a => Spec

-- Usage {-# LANGUAGE TypeApplications #-} spec :: Spec spec = do eqSpec @Int #+end_src

#+begin_src haskell Eq Int (==) :: Int -> Int -> Bool is reflexive is symetric is transitive is equivalent to (\ a b -> not $ a /= b) (/=) :: Int -> Int -> Bool is antireflexive is equivalent to (\ a b -> not $ a == b) #+end_src

***** <<>> Commutativity #+begin_src haskell :: Arbitrary a => (a -> a -> a) -> Property #+end_src

***** <<>> Symmetry #+begin_src haskell :: Arbitrary a => (a -> a -> Bool) -> Property #+end_src

***** <<>> Equivalence #+begin_src haskell :: (Arbitrary a, Eq b) => (a -> b) -> (a -> b) -> Property #+end_src

***** <<>> #+begin_src haskell :: (Arbitrary a, Eq b) => (a -> b) -> (b -> a) -> Property #+end_src

**** <<>> =Target= is a member of the Arbitrary type class. =Target -> Bool= is something =Testable=. This properties can be complex. Generator =arbitrary= gets the seed, and produces values of =Target=. Function =quickCheck= runs the loop and tests that generated =Target= values always comply the property.

***** Manual automation with QuickCheck properties

#+begin_src haskell import Test.QuickCheck import Test.QuickCheck.Function import Test.QuickCheck.Property.Common import Test.QuickCheck.Property.Functor import Test.QuickCheck.Property.Common.Internal

data Four' a b = Four' a a a b deriving (Eq, Show)

instance Functor (Four' a) where fmap f (Four' a b c d) = Four' a b c (f d)

instance (Arbitrary a, Arbitrary b) => Arbitrary (Four' a b) where arbitrary = do a1 <- arbitrary a2 <- arbitrary a3 <- arbitrary b <- arbitrary return (Four' a1 a2 a3 b)

-- Wrapper around prop_FunctorId prop_AutoFunctorId :: Functor f => f a -> Equal (f a) prop_AutoFunctorId = prop_FunctorId T

type Prop_AutoFunctorId f a = f a -> Equal (f a)

-- Wrapper around prop_AutoFunctorCompose prop_AutoFunctorCompose :: Functor f => Fun a1 a2 -> Fun a2 c -> f a1 -> Equal (f c) prop_AutoFunctorCompose f1 f2 = prop_FunctorCompose (applyFun f1) (applyFun f2) T

type Prop_AutoFunctorCompose structureType origType midType resultType = Fun origType midType -> Fun midType resultType -> structureType origType -> Equal (structureType resultType)

main = do quickCheck $ eq $ (prop_AutoFunctorId :: Prop_AutoFunctorId (Four' ())Integer) quickCheck $ eq $ (prop_AutoFunctorId :: Prop_AutoFunctorId (Four' ()) (Either Bool String)) quickCheck $ eq $ (prop_AutoFunctorCompose :: Prop_AutoFunctorCompose (Four' ()) String Integer String) quickCheck $ eq $ (prop_AutoFunctorCompose :: Prop_AutoFunctorCompose (Four' ()) Integer String (Maybe Int)) #+end_src

*** Write tests algorithm

  1. Pick the right language/stack to implement features.
  2. How expensive breakage can be.
  3. Pick the right tools to test this.

*** <<>> :drill: :properties: :ID: bebb2732-e73d-4d2b-92e1-090ffa883c77 🔚

Process of reducing coplexity in the test case - re-run with smaller values and make sure that the test still fails.

** Logic :properties: :ID: 4960f252-a074-41d3-9bf1-ce46d09052bc 🔚

*** <<>> :drill: SCHT: <2020-07-08 Wed> :properties: :ID: 8f814f63-6331-4179-abb5-264b9727ecf7 :DRILL_LAST_INTERVAL: 121.4785 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:58] 🔚

Purely abtract & theoretical logical object (idea) that has a Boolean value.

/*/ is expressed by a statement.

**** /*/

<<>>

**** <<>> :drill: SCHT: <2020-06-01 Mon> :properties: :ID: ce77faac-95af-4b60-804c-52bc8ce125bc :DRILL_LAST_INTERVAL: 129.0591 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-23 Thu 23:26] 🔚

Logically undividable unit. Does not contain logical connectives.

Often abstracts the non-logical ("real") objects.

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: ac4054a2-b6e0-48ee-afa1-38be7c122690 🔚

Formed by connecting propositions by logical connectives.

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: 2640c170-c125-4f34-ad16-608686554075 🔚

Studies propositions and argument flow.

Distinquishes logically indivisible units (atomic propositions) and abstracts them as variable and constant values of Boolean type properties. Studies consequences of those value aguments (atomic proposition) on composed propositions.

Invented by Aristotle.

Classical system that lead humanity to profound advancement. The classical /*/ language thou is limited and so in modern day extensions (mainly First-order logic) are used in the sciences.

Not Turing-complete, for example it is impossible to construct an arbitrary loop.

***** /*/

<<>> <<>> <<>> <<>> <<>> <<>> <<>>

***** <<>> :drill: SCHT: <2020-11-08 Sun> :properties: :ID: fbfe3772-5c3a-41c4-9d53-6b2bc571236e :DRILL_LAST_INTERVAL: 211.4183 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 13 :DRILL_FAILURE_COUNT: 5 :DRILL_AVERAGE_QUALITY: 3.077 :DRILL_EASE: 2.14 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-11 Sat 21:00] 🔚

Extension of a propositional logic that adds quantifiers.

Turing-complete.

****** /*/

<<>> <<>> <<>>

****** <<>> :drill: :properties: :ID: cbc5e8e2-5a97-4bad-8fe7-d5ca067c7c48 🔚

Extension over first-order logic that quantifies over relations.

******* <<>> :drill: :properties: :ID: b72dbeaa-ea81-4442-956b-5ab009afa82d :DRILL_LAST_INTERVAL: 0.0 :DRILL_REPEATS_SINCE_FAIL: 1 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.5 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 2 :DRILL_LAST_REVIEWED: [2020-08-07 Fri 10:36] 🔚

Extension over second-order logic that uses additional quantifiers, stronger semantics.

Is more expressive, but model-theoretic properties are less well-behaved.

*** <<>> :drill: SCHT: <2020-08-15 Sat> :properties: :ID: 0e5b50bc-8b00-463f-b9ad-f04fd3a525ac :DRILL_LAST_INTERVAL: 10.3873 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:25] 🔚

Logical operation.

**** /*/

<<>>

**** <<>> :drill: SCHT: <2021-09-02 Thu> :properties: :ID: 3f47a5a4-aa8a-43a5-a834-b16f02ee343d :DRILL_LAST_INTERVAL: 392.6327 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:12] 🔚

Logical AND.

Denotation: ( \land )

Multiplies cardinalities.

Haskell kind: #+begin_src haskell

#+end_src

**** <<>> :drill: SCHT: <2021-06-14 Mon> :properties: :ID: beba897a-84ca-42c9-a094-ba48487c587b :DRILL_LAST_INTERVAL: 413.9654 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:48] 🔚

Logical ( OR ) Denotation: ( \lor )

Summs cardinalities.

Relates to:

  • (in sets) union
  • (in algebra) addition
  • (in categories) sum

*** <<>> :drill: SCHT: <2020-07-25 Sat> :properties: :ID: 6f4b0532-ca5f-4ec6-b827-bceb4afb0d3f :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:53] 🔚

Function with Boolean codomain. ( P: X \to { true, \ false } ) - /*/ on ( X ).

Notation: ( P(x) )

Im many cases includes relations, quantifiers.

*** <<>> :drill: SCHT: <2020-08-26 Wed> :properties: :ID: 0fbcd5d9-8c13-4486-aabe-47c831900548 :DRILL_LAST_INTERVAL: 225.1278 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:59] 🔚

Declarative expression that is a bearer of a proposition.

When we talk about expression or statement being true/false - in fact we refer to the proposition that they represent.

Difference between proposition, statement, expression:

  1. "2 + 3 = 5"
  2. "two plus three equals five"
  • 1 & 2 are statements. Each of them is a collection of transmission symbols (linguistic objects) from a symbol systems ( \equiv ) expression. Each of them is expression that bears proposition (an idea resulting in a Boolean value) ( \equiv ) statement.

  • 1 & 2 represent the same proposition. Proposition from 1 ( \equiv ) proposition from 2.

  • Statement 1 ( \ne ) statement 2. They are two different statements, written in different systems. And statement "2 + 3 = 5" ( \ne ) statement "3 + 2 = 5".

**** /*/

<<>> <<>> <<>>

**** <<>> :drill: :properties: :ID: 431e7b16-6c82-45ea-b38a-57fa15b3d22c 🔚

The =if= (requirement) part of the proposition.

**** <<>> :drill: :properties: :ID: bdccfe09-4160-4f5f-85d0-e1c9b15d1542 🔚

=else= (consequential) part of the proposition.

**** <<>> :drill: :properties: :ID: 69784905-eb6e-4954-8956-cc90301396ed 🔚

Nonsensical proposition that has {impossible, not full, false} premise and as such - impossible to definitely prove true nor false (under currently given tools inside the particular theory).

Such proposition falls into paradox due to property of excluded middle in the classical logic.

Requirements of the proposition (antecedent part) cannot be satisfied.

Therefore "vacuous true/false" means: "considered as, but not proven".

Is a good example of why Haskell uses total functions even for =if .. then .. else ..= statements.

There is also =vacuous= function in Haskell, see Void.

*** <<>> :drill: SCHT: <2020-10-08 Thu> :properties: :ID: 50d0c8a8-4e41-4ddd-92fa-8135124c1809 :DRILL_LAST_INTERVAL: 268.496 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:01] 🔚

If and only if, exectly when, just. Denotation: ( \iff )

** Haskell structure :properties: :ID: f4eaf80a-e339-4205-801e-d956292d3b27 🔚

*** /*/ Haskell structures

*** <<>> :drill: :properties: :ID: fdc19b86-7e7d-465b-a6e6-0de994590325 🔚

Are not first-class. It is a set of patter match semantic notations.

Must be linear.

/*/ precedence (especially with more then one parameter, especially with =_= used) often changes the function.

**** <<>> :drill: SCHT: <2020-10-11 Sun> :properties: :ID: a2d762f7-549b-4aa1-ba3e-183c2e757a35 :DRILL_LAST_INTERVAL: 215.8069 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.714 :DRILL_EASE: 2.38 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:57] 🔚

#+begin_src haskell f [email protected](x, xs) = ... #+end_src

#+begin_src haskell f (x:xs) = x❌xs -- Can be compiled with reconstruction of x:xs f [email protected](x:_) = x:a -- Reuses structure without reconstruction #+end_src

***** /*/

<<>> <<>> <<>>

**** <<>> :drill: :properties: :ID: 582d6116-1313-484e-a69e-7439ece1a28a 🔚

Matches anything and can not be binded. For matching someting that should pass not checked and is not used.

#+begin_src haskell head (x:) = x tail (:xs) = xs #+end_src

***** /*/ <<>> <<>> <<>>

**** <<>> :drill: SCHT: <2020-10-09 Fri> :properties: :ID: 14309b50-3648-47ba-a4b1-eb5aa4bd7a3c :DRILL_LAST_INTERVAL: 193.6103 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 11 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.364 :DRILL_EASE: 2.14 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:45] 🔚

#+begin_src haskell case x of pattern1 -> ex1 pattern2 -> ex2 pattern3 -> ex3 otherwise -> exDefault #+end_src

Bolting guards & expressions with syntatic sugar on case: #+begin_src haskell case () of _ | expr1 -> ex1 | expr2 -> ex2 | expr3 -> ex3 | otherwise -> exDefault #+end_src

Pattern matching in function definitions is realized with case expressions.

**** <<>> :drill: :properties: :ID: 9b4971e7-2d30-453d-abb8-44bb21c06c55 🔚

Check values against the predicate and use the first match definition:

#+begin_src haskell f x | predicate1 = definition1 | predicate2 = definition2 ... | x < 0 = definitionN ... | otherwise = definitionZ #+end_src

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-06-26 Fri> :properties: :ID: 4ab85a6a-7e60-47fb-996a-c4d5263c3f62 :DRILL_LAST_INTERVAL: 60.9252 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 18 :DRILL_FAILURE_COUNT: 5 :DRILL_AVERAGE_QUALITY: 3.222 :DRILL_EASE: 2.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:53] 🔚

Allows check a list of pattern matches against functions, and then proceed.

| (/patternMatch1/) <- (/funcCheck1/) , (/patternMatch2/) <- (/funcCheck2/) = /RHS/

#+begin_src haskell lookup :: Eq a => a -> [(a, b)] -> Maybe b

addLookup l a1 a2 | Just b1 <- lookup a1 l , Just b2 <- lookup a2 l = b1 + b2 {-...other equations...-} #+end_src Run functions, they must succeed. Then pattern match results to =b1=, =b2=. Only if successful - execute the equation.

Default in Haskell 2010.

***** /*/

<<>>

**** <<>> :drill: :properties: :ID: 82076e4d-b5fd-48e1-858b-1d15858661bb 🔚

Defers the pattern match directly to the last moment of need during execution of the code.

#+begin_src haskell f (a, b) = g a b -- It would be checked that the pattern of the pair constructor -- is present, and that parameters are present in the constructor. -- Only after that success - work would start on the RHS, aka then construction -- g would start only then.

f ~(a, b) = g a b -- Pattern match of (a, b) deferred to the last moment, -- RHS starts, construction of g starts. -- For this lazy pattern the equivalent implementation would be: -- f p = g (fst p) (snd p) -- RHS starts, during construction of g -- the arguments would be computed and found, or error would be thrown. #+end_src

Due to full laziness deferring everything to the runtime execution - the lazy pattern is one-size-fits all (irrefutable), analogous to =_=, and so it does not produce any checks during compilation, and raises errors during runtime.

/*/ is very useful during recursive construction of recursive structure/process, especially infinite.

***** /*/

<<>> <<>>

**** <<>> :drill: :properties: :ID: 5fcc52b7-e84e-4434-9d84-0239f3122264 🔚

Entire LHS is a pattern, is a lazy pattern.

#+begin_src haskell [email protected](1:tfib) = 1 : 1 : [ a+b | (a,b) <- zip fib tfib ] #+end_src

***** /*/

<<>>

*** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: e2aded58-a463-4762-97c4-7fc2238d386d :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Process/code placing extra rules & constraints on the construction of values.

*** <<>> :drill: SCHT: <2020-09-20 Sun> :properties: :ID: c0196ee9-7ddc-4b66-b2bb-0d52f1051d75 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-27 Fri 12:57] 🔚

There are these levels of Haskell code:

**** /*/

<<>>

**** <<>> :drill: :properties: :ID: 2d900462-89be-4f77-be51-2d1867e82922 🔚

Level of code that works with data types.

***** <<>> :drill: :properties: :ID: c345f226-b6e3-42ca-8ca4-cd8c454e3ae3 🔚

#+begin_src haskell type ... newtype ... data ... class ... instance ... #+end_src

****** /*/

<<>> <<>> <<>>

***** <<>> :drill: :properties: :ID: f4b3cb1f-1860-49f0-bd56-8eddbd4bfe4d 🔚

=if= The type level information is complete (strongly connected graph)

=then=

Generalize the types and check if type level consistent to term level.

=else=

Infer the missing type level part from the term level. There are certain situations and structures where ambiguity arises and is unsolvable from the information of the term level (most basic example is polymorphic recursion).

****** /*/

<<>> <<>> <<>>

****** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: a510aee8-b732-4022-bd77-bb08f7383e04 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:01] 🔚

Type level declaration is considered to "have a CUSK" is it has enough syntatic information to warrant completeness (strongly connected graph) and start checking type level correspondence to term level, it is a ad-hock state ot type inferring.

In the future GHC would use other algorythm over/instead of CUSK.

******* /*/

<<>> <<>> <<>> <<<Complete, user-specific kind signature>>>

**** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 6bc4fbee-38e5-4612-ae28-8344a0f6028c :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Level of code that does logical execution.

**** <<>> :drill: SCHT: <2020-09-20 Sun> :properties: :ID: 37ac8b2b-af11-4b67-976c-84bd00d5f1bc :DRILL_LAST_INTERVAL: 269.6572 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Level of code, about compilation processes/results.

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-07-23 Thu> :properties: :ID: 99d21c80-6b3d-4818-aef0-6c7796571883 :DRILL_LAST_INTERVAL: 209.4486 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.75 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-27 Fri 13:03] 🔚

Level of code of main program operation, when machine does computations with compiled binary code.

**** <<>> :drill: :properties: :ID: 22d0e2bf-e879-4e90-80c6-0892b939d9a6 🔚

Level of code where kinds & kind declarations are situated, infered and checked.

***** <<>> :drill: :properties: :ID: 75185d70-0d08-4f13-b355-feaa559e3a76 🔚

Applying the type check to kind check:

=if= The kind level information is complete (strongly connected graph)

=then=

Check if kind level consistent to term level.

=else=

Infer the missing kind level parts from the type level. There are certain situations and structures where ambiguity arises and is unsolvable from the information of the kind level.

With =StandaloneKindSignatures= kind completeness happens against found (standalone) kind signature.

With =CUSKs= extension <<>> completeness happens agains "complete user-specific kind signature"

****** /*/

<<>> <<>>

*** <<>> :drill: SCHT: <2020-12-27 Sun> :properties: :ID: 9a4837d3-82e9-49f1-860d-e198013a60b5 :DRILL_LAST_INTERVAL: 244.6937 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 7 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.286 :DRILL_EASE: 2.08 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:49] 🔚

Instance which is separated from one of {type, class| implemetations.

Situation when for some publically used type the upstream module provides type class but does not provide an instance.

That allows/pushes to implement own version of instance.

If upstream would add instance - now both upstream instance and downstream instances exist. Locally that would create instance clash. Remotely, through modules usage - that should create inconsistancy problems in computations, since instances may not be bisimilar.

If module has any orphans - then in GHC terms all module is tagged an "orphan module". By the situation GHC on compiling some module is required to always visits the every interface file of every orphan module below the module being compiled. This is usually a wasted work which nevertheless is required. Have as few orphan modules as possible" ([[https://downloads.haskell.org/~ghc/latest/docs/users_guide.pdf]["GHC User’s Guide Documentation, Release 8.8.3"]]). Orphans prolong the compilation of the project and al dependent downstream code.

See: Good: Handling orphan instance.

*** <<>> :drill: SCHT: <2020-08-04 Tue> :properties: :ID: c2bc65ee-1d9b-4633-9aa1-780fa07752a8 :DRILL_LAST_INTERVAL: 203.0039 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.28 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 13:57] 🔚

Placeholder value that helps to do typechecking.

*** <<>> :properties: :ID: 0f94cac9-1a80-47a8-96b4-c57de3d5d046 🔚

Hierarchical naming scheme:

#+begin_src text Algebra -- Was this ever used? DomainConstructor -- formerly DoCon Geometric -- formerly BasGeomAlg

Codec -- Coders/Decoders for various data formats Audio Wav MP3 ... Compression Gzip Bzip2 ... Encryption DES RSA BlowFish ... Image GIF PNG JPEG TIFF ... Text UTF8 UTF16 ISO8859 ... Video Mpeg QuickTime Avi ... Binary -- these are for encoding binary data into text Base64 Yenc

Control Applicative Arrow Exception -- (opt, inc. error & undefined) Concurrent -- as hslibs/concurrent Chan -- these could all be moved under Data MVar Merge QSem QSemN SampleVar Semaphore Parallel -- as hslibs/concurrent/Parallel Strategies Monad -- Haskell 98 Monad library ST -- ST defaults to Strict variant? Strict -- renaming for ST Lazy -- renaming for LazyST State -- defaults to Lazy Strict Lazy Error Identity Monoid Reader Writer Cont Fix -- to be renamed to Rec? List RWS

Data Binary -- Binary I/O Bits Bool -- &&, ||, not, otherwise Tuple -- fst, snd Char -- H98 Complex -- H98 Dynamic Either Int Maybe -- H98 List -- H98 PackedString Ratio -- H98 Word IORef STRef -- Same as Data.STRef.Strict Strict
Lazy -- The lazy version (for Control.Monad.ST.Lazy) Binary -- Haskell binary I/O Digest MD5 ... -- others (CRC ?) Array -- Haskell 98 Array library Unboxed IArray MArray IO -- mutable arrays in the IO/ST monads ST Trees AVL RedBlack BTree Queue Bankers FIFO Collection Graph -- start with GHC's DiGraph? FiniteMap Set Memo -- (opt) Unique

Edison              -- (opt, uses multi-param type classes)
    Prelude         -- large self-contained packages should have
    Collection      -- their own hierarchy?  Like a vendor branch.
    Queue           -- Or should the whole Edison tree be placed

Database MySQL PostgreSQL ODBC

Dotnet ... -- Mirrors the MS .NET class hierarchy

Debug -- see also: Test Trace Observe -- choose a default amongst the variants Textual -- Andy Gill's release 1 ToXmlFile -- Andy Gill's XML browser variant GHood -- Claus Reinke's animated variant

Foreign Ptr StablePtr ForeignPtr -- rename to FinalisedPtr? to void confusion with Foreign.Ptr Storable Marshal Alloc Array Errors Utils C Types Errors Strings

GHC Exts -- hslibs/lang/GlaExts ...

Graphics HGL Rendering Direct3D FRAN Metapost Inventor Haven OpenGL GL GLU Pan UI FranTk Fudgets GLUT Gtk Motif ObjectIO TkHaskell X11 Xt Xlib Xmu Xaw

Hugs ...

Language Haskell -- hslibs/hssource Syntax Lexer Parser Pretty HaskellCore Python C ...

Nhc ...

Numeric -- exports std. H98 numeric type classes Statistics

Network -- (== hslibs/net/Socket), depends on FFI only BER -- Basic Encoding Rules Socket -- or rename to Posix? URI -- general URI parsing CGI -- one in hslibs is ok? Protocol HTTP FTP SMTP

Prelude -- Haskell98 Prelude (mostly just re-exports other parts of the tree).

Sound -- Sound, Music, Digital Signal Processing ALSA JACK MIDI OpenAL SC3 -- SuperCollider

System -- Interaction with the "system" Cmd -- ( system ) CPUTime -- H98 Directory -- H98 Exit -- ( ExitCode(..), exitWith, exitFailure ) Environment -- ( getArgs, getProgName, getEnv ... ) Info -- info about the host system IO -- H98 + IOExts - IOArray - IORef Select Unsafe -- unsafePerformIO, unsafeInterleaveIO Console GetOpt Readline Locale -- H98 Posix Console Directory DynamicLinker Prim Module IO Process Time Mem -- rename from cryptic 'GC' Weak -- (opt) StableName -- (opt) Time -- H98 + extensions Win32 -- the full win32 operating system API

Test HUnit QuickCheck

Text Encoding QuotedPrintable Rot13 Read Lex -- cut down lexer for "read" Show Functions -- optional instance of Show for functions. Regex -- previously RegexString Posix -- Posix regular expression interface PrettyPrint -- default (HughesPJ?) HughesPJ Wadler Chitil ... HTML -- HTML combinator lib XML Combinators Parse Pretty Types ParserCombinators -- no default ReadP -- a more efficient "ReadS" Parsec Hutton_Meijer ...

Training -- Collect study and learning materials #+end_src

**** /*/ <<>> <<>>

*** <<>> :properties: :ID: 5d6b7d02-c0ac-436e-9691-f96eba56cbf2 🔚

Haskell has special meaning for:

#+begin_src text case, class, data, deriving, do,else, if, import, in, infix, infixl, infixr, instance, let, of, module, newtype, then, type, where #+end_src

**** /*/ <<>>

**** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 3114f612-aa52-4a50-9378-c4697b0635b6 :DRILL_LAST_INTERVAL: 4.0 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.5 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

=import= statement by default imports identifiers from the other module, using hierarchical module name, brings into scope the identifiers to the global scope both into unqualified and qualifies by the hierarchical module name forms.

This possibilities can mix and match:

  • = ()= - import only instances of type classes.
  • = (x, y)= - import only declared indentifiers.
  • =qualified = - discards unqialified names, forse obligatory namespace for the imports.
  • =hiding (x, y)= - skip import of declared identifies.
  • = as = - renames module namespace.
  • =<type/class> (..)= - import class & it's methods, or type, all its data constructors & field names.

**** <<>> :drill: :properties: :ID: 424f4e78-750c-4f67-b1f5-d76e398ca223 🔚

/*/ expression is a set of cross-recursive lazy pattern bindings.

Declarations permitted:

  • type signatures
  • function bindings
  • pattern bindings

It is an expression (macro) and that integrates in external lexical scope expression it applied in.

Form: #+begin_src haskell let b1 bn in c #+end_src

***** /*/

<<>> <<>>

**** <<>> :drill: :properties: :ID: db6c2ddb-9fb3-4416-81d5-bac6c8fad6a6 🔚

Part of the syntax of the whole function declaration, has according scope.

As part of whole declaration - can extend over definitions of the funtion (pattern matches, guards).

Form: #+begin_src haskell f match1 = y f match2 = y f x = | cond1 x = y | cond2 x = y | otherwise = y where y = ... x ... #+end_src

***** /*/

<<>>

*** <<>> :drill: :properties: :ID: 6f26be1d-e057-4bcf-ad63-3e404e78db1f 🔚

Document that is a standart of language.

**** /*/ <<>> <<>> <<<Haskell 98 Language Report>>> <<<Haskell 98 Report>>> <<<Haskell 1998 Language Report>>> <<<Haskell 2010 Language Report>>> <<<Haskell 2010 Report>>>

*** <<<Haskell'>>> :drill: :properties: :ID: e13a30ca-dc6a-4fb8-8a20-2476971bd70a 🔚

Current language development mod.

https://prime.haskell.org/

**** /*/

<<>>

*** <<>> :drill: SCHT: <2020-10-24 Sat> :properties: :ID: b8d107f0-cbf4-42cb-acb5-5d987de3c7d1 :DRILL_LAST_INTERVAL: 228.9343 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:58] 🔚

Library of combinators to provide Haskell (functional language without mutation) with the emulation of =get=-ters and =set=-ters of imperative language.

*** <<>> :drill: SCHT: <2020-09-20 Sun> :properties: :ID: 92784b03-a83b-4599-9cd0-f2210dd5e177 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-27 Fri 12:56] 🔚

Pragma - instruction to the compiler that specifies how a compiler should process the code. Pragma in Haskell have form: #+begin_src haskell {-# PRAGMA options #-} #+end_src

**** <<>> :drill: SCHT: <2020-09-20 Sun> :properties: :ID: 6f16cf30-77b4-4e31-af0a-11dd24ae48bf :DRILL_LAST_INTERVAL: 269.6572 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:51] 🔚

Controls what variations of the language are permitted. It has a set of allowed options: https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/glasgow_exts.html, which can be supplied.

***** <<>>

****** /*/

<<>>

****** Useful by default :drill: :properties: :ID: 29c25dae-3a88-4fe1-acf3-4ebe568da284 🔚

#+begin_src haskell {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE InstanceSigs #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE BlockArguments #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE EmptyCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE TypeApplications #-} #+end_src

****** <<>> :drill: SCHT: <2020-09-16 Wed> :properties: :ID: e5aaa672-dec3-4621-8429-9b5cdcaac069 :DRILL_LAST_INTERVAL: 191.5213 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.4 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-08 Sun 22:52] 🔚

Allow type signatures which appear that they would result in an unusable binding. However GHC will still check and complain about a functions that can never be called.

****** <<>> :drill: :properties: :ID: cb3b5b66-06a8-4187-9606-631faefa7814 🔚

Enables an alternative in-depth reduction that translates the do-notation to the operators =<$>=, =<*>=, =join= as far as possible.

For GHC to pickup the patterns, the final statement must match one of these patterns exactly:

#+begin_src haskell pure E pure $ E return E return $ E #+end_src

When the statements of do expression have dependencies between them, and ApplicativeDo cannot infer an Applicative type - GHC uses a heuristic ( O(n^2) ) algorithm to try to use <*> as much as possible. This algorithm usually finds the best solution, but in rare complex cases it might miss an opportunity. There is aslo ( O(n^3) ) algorithm that finds the optimal solution: =-foptimal-applicative-do=.

Requires =ap = <*>=, =return = pure=, which is true for the most monadic types.

  • Allows use of do-notation with types that are an instance of Applicative and Functor
  • In some monads, using the applicative operators is more efficient than monadic bind. For example, it may enable more parallelism.

The only way it shows up at the source level is that you can have a =do= expression with only Applicative or Functor constaint.

It is possible to see the actual translation by using =-ddump-ds=.

****** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 301a3741-f96c-45a7-bb14-7e342167b62d :DRILL_LAST_INTERVAL: 4.0 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.5 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

Enable the definition of further constraints on individual class methods.

****** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 4209a57c-e331-4c03-9386-b08d2cfd33d7 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:00] 🔚

Enable [[https://en.wikipedia.org/wiki/C_preprocessor][C preprocessor]].

****** <<>> :drill: SCHT: <2020-10-20 Tue> :properties: :ID: 34a6dad7-515c-4b3c-afeb-da268b77c4e0 :DRILL_LAST_INTERVAL: 270.5287 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-23 Thu 22:57] 🔚

Automatic deriving of instances for the Functor type class. For type power set functor is unique, its derivation inplementation can be autochecked.

****** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: cde4229a-165c-4dfa-a3b5-22375f7924a6 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:51] 🔚

Allow explicit forall quantificator in places where it is implicit by Haskell.

****** <<>> :drill: :properties: :ID: ab8dc15c-452a-4dd7-94fe-1e1c38fd0c1e 🔚

Ability to use complex constraints in class declaration contexts. The only restriction on the context in a class declaration is that the class hierarchy must be acyclic. #+begin_src haskell class C a where op :: D b => a -> b -> b

class C a => D a where ... #+end_src ( C :> D ), so in C we can talk about D.

Synergizes with ConstraintKinds.

****** <<>> :drill: SCHT: <2020-07-16 Thu> :properties: :ID: c59f794d-5687-4b96-9fd0-7df4b650ed2a :DRILL_LAST_INTERVAL: 146.9918 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.418 :DRILL_EASE: 2.48 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 22:33] 🔚

Allow type class instances types contain nested types. #+begin_src haskell instance C (Maybe Int) where ... #+end_src Implies TypeSynonymInstances.

****** <<>> :drill: SCHT: <2020-08-07 Fri> :properties: :ID: 96a23172-9aa7-4290-adfe-a18169dd4362 :DRILL_LAST_INTERVAL: 225.56 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:37] 🔚

Enable GHC’s =newtype= cunning generalised deriving mechanism. #+begin_src haskell newtype Dollars = Dollars Int deriving (Eq, Ord, Show, Read, Enum, Num, Real, Bounded, Integral) #+end_src (In old Haskell 98 only Eq, Ord, Enum could been inherited.)

****** <<>> :drill: SCHT: <2020-07-04 Sat> :properties: :ID: 3ca7e2f5-0e70-474f-bb31-08186739efb1 :DRILL_LAST_INTERVAL: 192.3251 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 8 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.625 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:30] 🔚

Allow definition of functions expecting implicit parameters. In the Haskell that has static scoping of variables allows the dynamic scoping, such as in classic Lisp or ELisp. Sure thing this one can be puzzling as hell inside Haskell.

****** <<>> :drill: SCHT: <2021-03-17 Wed> :properties: :ID: 938047ce-f015-45e9-b5f8-b8e39fb456a7 :DRILL_LAST_INTERVAL: 328.6078 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:35] 🔚

Enables expressions of the form: #+begin_src haskell \case { p1 -> e1; ...; pN -> eN }

-- OR

\case p1 -> e1 ... pN -> eN #+end_src

****** <<>> :drill: :properties: :ID: 5e34ea4e-cb1b-4359-968c-440f068b50ad 🔚

Implies: ConstrainedClassMethods Enable the definitions of typeclasses with more than one parameter. #+begin_src haskell class Collection c a where #+end_src

****** <<>> :drill: SCHT: <2020-08-05 Wed> :properties: :ID: 9b5af526-36f9-49e2-ae8c-ac9a5361b877 :DRILL_LAST_INTERVAL: 104.94 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 9 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.96 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:13] 🔚

Enable multi-way-if syntax. #+begin_src haskell if | guard1 -> code1 | ... | guardN -> codeN #+end_src

****** <<>> :drill: SCHT: <2020-07-26 Sun> :properties: :ID: b09019e1-34d5-40f0-b866-504f3e1e4515 :DRILL_LAST_INTERVAL: 213.8621 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:37] 🔚

Enable overloaded string literals (string literals become desugared via the =IsString= class).

With overload, string literals has type: #+begin_src haskell (IsString a) => a #+end_src

The usual string syntax can be used, e.g. =ByteString=, =Text=, and other variations of string-like types. Now they can be used in pattern matches as =char->integer= translations. To pattern match =Eq= must be derived.

To use class =IsString= - import it from =GHC.Ext=.

****** <<>> :drill: :properties: :ID: 4ac887da-6e23-4028-9924-3496787aa8d0 🔚

Partial type signature containins wildcards, placeholders (=_=, =_name=). Allows programmer to which parts of a type to annotate and which to infer. Also applies to constraint part.

As untuped expression, partly typed can not polymorphicly recurse.

-Wno-partial-type-signatures supresses infer warnings.

****** <<>> :drill: SCHT: <2020-05-31 Sun> :properties: :ID: 54d784f9-d433-4ef8-a029-a6a6c6f61c18 :DRILL_LAST_INTERVAL: 157.7214 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 11:57] 🔚

Enable types of arbitrary rank. See Type rank.

Implies ExplicitForAll.

Allows =forall= quantifier:

  • Left side of \to
  • Right side of \to
  • as argument of a constructor
  • as type of a field
  • as type of an implicit parameter
  • used in pattern type signature of lexically scoped type variables

****** <<>> :drill: :properties: :ID: 5311b6b7-32e9-4ba9-a3fa-43b37df5988f 🔚

By default type variables do not have a scope except inside type signatures where they are used.

Extension allows:

  • explicitly =forall= quantified type variables broad the scope to the internals of implementation.
  • pattern type signatures can use =::= to denote a type signature within a pattern.

When there are internall type signatures provided in the code block (=where=, =let=, etc.) they (main type description of a function and internal type descriptions) restrain one-another and become not trully polymorphic, which creates a bounding interdependency of types that GHC would complain about.

/*/ option provides the lexical scope inside the code block for type variables that have forall quantifier. Because they are now lexiacally scoped - those type variables are used across internal type signatures.

Implies ExplicitForAll.

See: [[https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/glasgow_exts.html#lexically-scoped-type-variables][GHC documentation]], [[https://ocharles.org.uk/guest-posts/2014-12-20-scoped-type-variables.html][explanation blogpost]], [[https://typeclasses.com/ghc/scoped-type-variables][typeclasses article]].

****** <<>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 30ae7849-e739-4718-b031-5566e8f82a67 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Allow tuple section syntax: #+begin_src haskell (, True) (, "I", , , "Love", , 1337) #+end_src

****** <<>> :drill: SCHT: <2020-06-25 Thu> :properties: :ID: d5912c99-9c72-44ad-8577-a02f7d31671f :DRILL_LAST_INTERVAL: 59.5256 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.167 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:52] 🔚

Allow type application syntax: #+begin_src haskell read @Int 5

:type pure @[] pure @[] :: a -> [a]

:type (<>) @[] (<>) @[] :: [a -> b] -> [a] -> [b]

--

instance (CoArbitrary a, Arbitrary b) => Arbitrary (a -> b)

λ> ($ 0) <$> generate (arbitrary @(Int -> Int)) #+end_src

****** <<>> :drill: SCHT: <2020-06-20 Sat> :properties: :ID: 3989b294-f011-48c0-9998-be10bd75c541 :DRILL_LAST_INTERVAL: 178.2614 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:35] 🔚

Now type synonim can have it's own type class instances.

****** <<>> :drill: :properties: :ID: 71ac682f-292d-401a-bd61-0c28a707a950 🔚

Permit instances which may lead to type-checker non-termination.

GHC has Instance termination rules regardless of FlexibleInstances FlexibleContexts.

****** <<>> :drill: SCHT: <2020-05-23 Sat> :properties: :ID: cbd923fc-d36c-4953-a8dc-ca370eda11f0 :DRILL_LAST_INTERVAL: 27.0671 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 15 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.134 :DRILL_EASE: 1.44 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:49] 🔚

#+begin_src haskell foo (f1 -> Pattern1) = c1 foo (fn -> Pattern2 a b) = g1 a b #+end_src (/expression/ \to /pattern/): take what is came to match - apply the /expression/, then do /pattern/-match, and return what originally came to match.

Semantics:

  • /expression/ & /pattern/ share the scope, so also variables.
  • if (=(/expression/ :: t1 -> t2) && (/pattern/ :: t2)=) then (ViewPattern =(/expression/ -> /pattern/)= =:: t1=) (return what originally was recieved into pattern match) else skip

// are like pattern guards that can be nested inside of other patterns. // are a convenient way to pattern-match algebraic data type.

Additional possible usage: #+begin_src haskell foo a (f2 a -> Pattern3 b c) = g2 b c -- only for function definitions foo ((f,_), f -> Pattern4) = c2 -- variables can be bount to the left in data constructors and tuples #+end_src

****** <<>> :drill: SCHT: <2021-02-07 Sun> :properties: :ID: 0ed5ea82-77f7-4b51-af7b-19a3f6426ec3 :DRILL_LAST_INTERVAL: 290.925 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.7 :DRILL_EASE: 2.58 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:44] 🔚

Allow contexts in data types. #+begin_src haskell data Eq a => Set a = NilSet | ConsSet a (Set a)

-- NilSet :: Set a -- ConsSet :: Eq a => a -> Set a -> Set a #+end_src Considered misfeature. Deprecated. Going to be removed.

****** <<>> :drill: :properties: :ID: e3ecf941-d6be-4b47-abdd-b08675bf367a 🔚

Type signatures for type-level declarations.

#+begin_src haskell type <name_1> , ... , <name_n> :: #+end_src

#+begin_src haskell type MonoTagged :: Type -> Type -> Type data MonoTagged t x = MonoTagged x

type Id :: forall k. k -> k type family Id x where Id x = x

type C :: (k -> Type) -> k -> Constraint class C a b where f :: a b

type TypeRep :: forall k. k -> Type data TypeRep a where TyInt :: TypeRep Int TyMaybe :: TypeRep Maybe TyApp :: TypeRep a -> TypeRep b -> TypeRep (a b) #+end_src

< GHC 8.10.1 - type signatures were only for term level declarations.

Extension makes signatures feature more uniformal.

Allows to set the order of quantification, order of variables in a kind. For example when using TypeApplications.

Allows to set full kind of derivable class, solving situations with GADT return kind.

******* /*/

<<>> <<>>

****** <<>> :drill: :PROPERTIES: :ID: 2e2f62a0-a6ac-4046-969c-bcb6e4ff4810 :END:

Very healpful. Helps to solve type level, helps to establish type signatures and constraints. Allow to provide =_= in the type signatures to automatically infere-in the type information there.

Wild cards:

  • Type #+begin_src haskell f :: _ -> _ -> a #+end_src

  • Constraint #+begin_src haskell f :: _ => a -> b -> c #+end_src

  • Named #+begin_src haskell f :: _x -> _x -> a #+end_src allows to identify the same wildcard.

****** <<>> :drill: :PROPERTIES: :ID: 2e1352a2-53d9-4c4d-b5d4-473353d0a87c :END:

Allow type signature to hold operator names:

#+begin_src haskell data a + b = Plus a b #+end_src


Implies ExplicitNamespaces

***** How to make a GHC LANGUAGE extension

In =libraries/ghc-boot-th/GHC/LanguageExtensions/Type.hs= add new constructor to the =Extension= type #+begin_src haskell data Extension = Cpp | OverlappingInstances ... | Foo #+end_src

=/main/DynFlags.hs= extend =xFlagsDeps=: #+begin_src haskell xFlagsDeps = [ flagSpec "AllowAmbiguousTypes" LangExt.AllowAmbiguousTypes, ... flagSpec "Foo" LangExt.Foo ] #+end_src It is for basic case. For testing, parser see further: https://blog.shaynefletcher.org/2019/02/adding-ghc-language-extension.html

** Computer science :properties: :ID: c197198c-c8c0-40ab-bfbf-f22c80f6f3b4 🔚

*** <<>> :drill: SCHT: <2020-09-21 Mon> :properties: :ID: 500e9e31-5960-4275-a8e3-3190b3b63f8f :DRILL_LAST_INTERVAL: 268.496 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-28 Sat 17:47] 🔚

/*/ changing code/applying patch sneakily - and possibility incompatibility with other at runtime. Monkey patch is derivative term.

**** <<>> :drill: SCHT: <2020-08-24 Mon> :properties: :ID: 8b05451a-ed92-464d-884a-654d9b5dad6a :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:16] 🔚

/From Guerrilla patch./

/*/ is a way for program to modify supporting system software affecting only the running instance of the program.

*** <<>> :drill: :properties: :ID: 2ef38e57-e693-490c-af8e-f92b3c31e6b3 🔚

Point of mutual meeting. Code behind interface determines how data is consumed.

*** <<>> :drill: :properties: :ID: d96e515e-8f88-413f-a12c-50bdb5f0a096 🔚

Importable organizational unit.

*** <<>> :drill: SCHT: <2021-06-14 Mon> :properties: :ID: a2989c15-2adc-403a-add7-35855e9de65c :DRILL_LAST_INTERVAL: 413.9654 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.333 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:48] 🔚

Area where binds are accessible.

**** <<>> :drill: :properties: :ID: 477d92da-63ca-4929-b54c-aa16f6d2c71e 🔚

The name resolution depends upon the program state when the name is encountered, which is determined by the execution context or calling context.

**** <<>> :drill: SCHT: <2020-07-07 Tue> :properties: :ID: 989a2a14-8faf-4edb-a1cf-c3ae3a929425 :DRILL_LAST_INTERVAL: 224.8335 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:16] 🔚

Scope bound by the structure of source code where the named entity is defined.

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-07-28 Tue> :properties: :ID: 4dba73c1-5cb4-4612-b9dc-f7a05d463baa :DRILL_LAST_INTERVAL: 241.6651 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-29 Fri 00:41] 🔚

Scope applies only in (current) area.

***** /*/

<<>>

*** <<>> :drill: SCHT: <2020-07-07 Tue> :properties: :ID: 45b1bebf-431f-45dd-8522-ea688968090f :DRILL_LAST_INTERVAL: 224.8335 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:15] 🔚

When in the local scope bigger scope variable overriden by same name variable from the local scope.

*** <<>> :drill: SCHT: <2020-08-23 Sun> :properties: :ID: 244e15a8-9ae5-4842-82b1-279387d088fd :DRILL_LAST_INTERVAL: 267.3 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-30 Sat 02:16] 🔚

Artificial way to make language easier to read and write.

*** <<>> :drill: SCHT: <2020-09-11 Fri> :properties: :ID: a33a26ee-f5e0-4a70-b01e-dbf9b41b8681 :DRILL_LAST_INTERVAL: 185.8455 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.2 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:57] 🔚

Is parametric polymorphism in programming.

Extends the Lambda calculus by introducing ( \forall ) (universal quantifier) over types.

**** /*/

<<<Girard–Reynolds polymorphic lambda calculus>>> <<>>

*** <<>> :drill: SCHT: <2021-04-07 Wed> :properties: :ID: 0d5c9709-660d-47c7-b573-7dd06d9cb936 :DRILL_LAST_INTERVAL: 245.4869 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 13 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.308 :DRILL_EASE: 2.1 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:07] 🔚

Final evaluation inside the function. Produces the function result.

*** <<>> :drill: :properties: :ID: bd66aa1b-4a01-445d-bca2-48dc193e5657 🔚

Not evaluated calculation. Can be dragged around, until be lazily evaluated.

*** <<>> :drill: :properties: :ID: 49209cb4-a094-4b16-8803-884efd701706 🔚

#+caption: Application memory structural parts #+name: tab--application-memory-structural-parts #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t | Storage of | Block name | |-----------------------------------+---------------| | All not currently processing data | <<>> | | Function call, local variables | <<>> | | Static and global variables | Static/Global | | Instructions | Binary code |

When even Main invoked - it work in Stack, and called Stack frame. Stack frame size for function calculated when it is compiled. When stacked Stack frames exceed the Stack size - stack overflow happens.

*** <<>> :drill: :PROPERTIES: :ID: 30386543-0e34-4d6c-8c83-34b5e919af28 :END:

Mathematical model of computation that defines abstract Turing machine. Abstract machine which manipulates symbols on a strip of tape, according to a table of rules.

**** <<>>

Set of action rules that can simulate any Turing machine.

***** /*/

<<>> <<>> <<>> <<>>

*** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: f77f5734-1b15-4192-be41-f0ee8ac15441 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:37] 🔚

Read-eval-print loop, aka interactive shell.

*** <<>> :drill: :PROPERTIES: :ID: 519f588a-5a5d-4426-b39f-671c2ae6f4f7 :END:

Language design/fitted for particular domain of application. Mainly should be Turing incomplete, since general-purpose language implies Turing completeness.

**** /*/

<<>> <<>>

**** <<>>

DSL used inside outer language.

Two levels of embedding:

  • Shallow: DSL translates into Haskell directly
  • Deep: Between DSL and Haskell there is a data structure that reflects the expression tree, AKA stores the syntax tree.

***** /*/

<<>>

*** <<>> :drill: :properties: :ID: 34418701-bc96-4c96-ab01-c59ec2ee5741 🔚

**** <<>> :drill: SCHT: <2020-07-27 Mon> :properties: :ID: db0f5189-b0a4-4554-af3d-dae7145516c5 :DRILL_LAST_INTERVAL: 85.2825 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 3.4 :DRILL_EASE: 2.04 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-05-03 Sun 13:09] 🔚

Cell that values may inhabit.

**** <<>> :drill: :properties: :ID: 09d6089a-5e26-4a2a-b805-23941be3e63e 🔚

#+begin_src haskell (:) :: a -> [a] -> [a] #+end_src

***** /*/

<<>>

**** <<>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 8ca6b84c-9c42-4f2c-948e-39a94246ad14 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:43] 🔚

#+begin_src text _ #+end_src

**** <<>> :drill: SCHT: <2020-07-26 Sun> :properties: :ID: 44946197-24dd-48fd-810c-6af851f6a0cf :DRILL_LAST_INTERVAL: 213.8621 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.6 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 12:37] 🔚

#+begin_src text * /
#+end_src

**** <<>> :drill: SCHT: <2020-07-07 Tue> :properties: :ID: 9f1c254b-a3dd-4ba5-bdec-7b43be39d49f :DRILL_LAST_INTERVAL: 224.8335 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.8 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-11-25 Mon 00:16] 🔚

Is a chain of memory cells, each points to the both value of element and to the next memory cell. #+begin_src text Array:

: /
1 : /
2 : /
3 []

1:2:3:[]

Spine: : /
_ : /
_ : /
_ []

#+end_src

** <<>> :properties: :ID: e8c25704-bba0-40b2-8ee1-a99014ba7a9f 🔚

*** <<>> :drill: :properties: :ID: 33a188ed-1cb4-435d-bae2-6065dec4dfcb 🔚

Object that recieves the arrow.

**** <<>> :drill: :properties: :ID: 0a7e03d8-d305-4739-b44f-f4b183fdf618 🔚

Immidiate successor.

*** <<>> :drill: :properties: :ID: cd19ada7-93b3-4efb-829c-37325f082ff5 🔚

Object that sends arrow.

**** <<>> :drill: SCHT: <2020-06-21 Sun> :properties: :ID: 4ddb51b6-c250-4a00-9029-ed90b86ca085 :DRILL_LAST_INTERVAL: 59.6088 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.56 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:17] 🔚

Immidiate predecessor.

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 51b34488-d123-4228-b806-5bb02ce0384e :DRILL_LAST_INTERVAL: 4.0 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.5 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:02] 🔚

Number of arrows of object.

**** <<>> :drill: :properties: :ID: cc8a4af2-40ac-4f5c-9f1e-b057a8cb195c 🔚

Number of ingoing arrows.

**** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 44e08d7b-af1a-4d4d-a9e2-1af7165ec7c7 :DRILL_LAST_INTERVAL: 4.0 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.5 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:05] 🔚

Number of outgoinf arrows.

*** <<>> :drill: :properties: :ID: 75984947-e25f-4385-b7db-32157e63377c 🔚

Matrix of connection of odjects ={-1,0,1}=.

***** <<>> :drill: :properties: :ID: 827b53ca-20a8-4534-94e7-3ed28aaaac9c 🔚

Allow adding type signatures to type class function instance declaration.

*** <<>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: e505d89b-4675-48d9-98be-1bda838a069d :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

If every vertex in a graph is reachable from every other vertex.

It is possible to find all strongly connected components (and that way also test graph for strong connectivity), in linear time (=Θ(V+E)=).

Binary relation of being strongly connected is an equivalence relation.

**** /*/

<<>>

**** <<>> :drill: :properties: :ID: 220d953d-f39a-476d-88ed-93c1f73c846c 🔚

Full strongly connected subgraph of some graph.

/*/ of a directed graph G is a subgraph that is strongly connected, and has property: no additional edges or vertices from G can be included in the subgraph without breaking its property of being strongly connected.

***** /*/

<<>> <<>> <<>> <<>>

** <<>> :drill: :PROPERTIES: :ID: 08e3d23b-a5ee-4b80-a6c8-062dad701fc2 :END:

Method of embedding eDSL in a typed functional host language (Haskell). Alternative to the embedding as a (generalized) algebraic data type. For parsers of DLS expressions: (1/partial) evaluator, compiler, pretty printer, multi-pass optimizer.

/*/ embedding is writing denotational semantics for the DSL in the host language.

Approach can be used iff eDSL is typed. Only well-typed terms become embeddable, and host language can implemen also a eDSL type system. Approach that eDSL code interpretations are type-preserving.

One of main pros of /*/ - extensibility: implementation of DSL can be used to analyze/evaluate/transform/pretty-print/compile and interpreters can be extended to more passes, optimizations, and new versions of DSL while keeping/using/reusing the old versions.

Example fields of application: language-integrated queries, non-deterministic & probabilistic programming, delimiter continuation, computability theory, stream processsing, hardware description languages, generation of specialized numerical kernels, semantics of natural language.

** <<>>

Operators then their operands.

*** /*/ <<>> <<>>

*** <<>>

Operands then their opration.

*** /*/ <<>> <<>>

  • Give definitions

** <<>>

** <<>>

** <<>>

** <<>>

** <<>>

** <<>>

*** /*/

<<>>

** <<>>

*** /*/

<<>>

** <<>> ** <<>> ** <<>>

*** <<>>

*** <<>>

GADT is a generalization over parametric algebraic data types which allow explicitly denote the types (type matching) of the constructors and define data types using pattern matching on the left side of "data" statements.

*** /*/

<<>> <<>> <<>> <<>> <<>>

*** <<>>

*** <<>>

** <<>>

*** <<<-Wno-partial-type-signatures>>>

Supresses PartialTypeSignatures wildcard infer warning.

** <<>>

LANGUAGE GADTs

*** /*/

<<>>

** <<>>

Investigates in thepth the intuitive notion of order using binary relations.

*** <<>>

Formalizes approximation and convergense. Has close relation to Topology.

*** <<>>

Partially ordered set in which any two elements have unique supremum and infinum.

( P = (X, \le ), \forall {x_{1}, x_{2}} \in X \ : \ \exists! {inf, sup}({x_{1},x_{2}}) )

( x \lor (y \land x) \ = \ (x \lor y) \land x \ = \ x )

Most of partially ordered sets are not lattices.

*** <<>>

**** <<>>

R^{X \to X} : Reflexive & Transitive: ( aRa ) ( aRb, bRc \Rightarrow aRc )

Generalization of equivalence relations partial orders.

// Antisymmetric \Rightarrow Partial ordering. // Symmetric \Rightarrow Equivalence.

***** /*/

<<>>

***** <<>>

( \forall a,b : a \le b \lor b \le a ) \Rightarrow Total Preorder.

**** <<>>

A binary relation must be reflexive, antisymmetric and transitive.

Partial - not every elempents between them need to be comparable.

Good example of /*/ is a genealogical descendancy. Only related people produce relation, not related do not.

***** /*/

<<>> <<>> <<>> <<>> <<>>

**** <<>>

**** <<>>

Totally ordered set, aka sequence.

** <<>>

Studies algebraic structures.

** <<>>

*** <<>>

( R^{X \to X}, \forall x \in X : x R x ) Order theory: ( a \le a )

/*/ - each element is comparable to itself.

Corresponds to Identity and Automorphism.

**** /*/

<<>> <<>>

*** <<>>

( R^{X \to X}, \forall x \in X : \nexists R(x, x) )

**** /*/

<<>> <<>> <<>> <<>>

*** <<>>

( \forall a,b,c \in X, \forall R^{X \to X} : (aRb \land bRc) \Rightarrow aRc )

/*/ - the start of a chain of precedence relations must precede the end of the chain.

**** /*/

<<>> <<>>

*** <<>>

( \forall a,b \in X : (aRb \iff bRa) )

**** /*/

<<>> <<>>

*** <<>>

| Reflexive | Symmetric | Transitive | |----------------------------+----------------------------------+-------------------------------------------------| | ( \forall x \in X, \exists R : x R x ) | ( \forall a,b \in X : (aRb \iff bRa) ) | ( \forall a,b,c \in X, \forall R^{X \to X} : (aRb \land bRc) \Rightarrow aRc ) | | ( a = a ) | ( a = b \iff b = a ) | ( a = b, b = c \Rightarrow a = c ) |

**** /*/

<<>> <<>>

*** <<>>

( \forall a, b \in X : aRb, bRa \Rightarrow a = b ) ~ ( aRb, a \ne b \Rightarrow \nexists bRa ). Antisymmetry does not say anything about ( R(a,a) ).

/*/ - no two different elements precede each other.

**** /*/

<<>> <<>>

*** <<>>

( \forall a,b \in X (aRb \Rightarrow \neg (bRa)) ) /*/ ( \iff ) Antisymmetric \land Irreflexive. Asymmetry \ne "not symmetric" Symmetric \land Asymmetric is only empty relation.

**** /*/

<<>> <<>>

** <<>>

Equivalent, interconvertable with no loss of information.

*** /*/

<<>>

** <<>>

Enable lexical scope for forall quantifier defined type variables

Implemented in ScopedTypeVariables

** <<>>

Several definitions here, reduce them.

Data type mathematical model, defined by its semantics from the user point of view, listing possible values, operations on the data of the type, and behaviour of these operations.

/*/ class of objects whose logical behaviour is defined by a set of values and set of operations (analogue to algebraic structure in mathematics).

A specification of a data type like a stack or queue where the specification does not contain any implementation details at all, only the operations for that data type. This can be thought of as the contract of the data type.

*** /*/

<<>>

** <<>>

** <<>>

** <<>>

** <<>>

** <<>>

** <<>> :drill: SCHT: <2020-07-05 Sun> :properties: :ID: 62a62e62-5b76-42d5-a971-9b9d3f72ec8f :DRILL_LAST_INTERVAL: 74.283 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 12 :DRILL_FAILURE_COUNT: 4 :DRILL_AVERAGE_QUALITY: 3.584 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:34] 🔚

Nested tree data structure.

Introduced & used in Lisp. Lisp code and data are /*/.

// in Lisp: Atom or expression of the form =(x . y)=, =x= and =y= are //.

Modern abbriviated notation of /*/: =(x y)=.

*** /*/

<<>> <<>> <<>> <<>> <<>> <<>> <<>> <<>>

** <<>> :drill: :properties: :ID: 2d7eeed7-766f-4261-8976-dffc939794b0 🔚

Expression consisting of:

  • variables
  • coefficients
  • addition
  • substraction
  • multiplication (including positive integer variable exponentiation)

Polynomials form a ring. Polynomial ring.

*** /*/

<<>>

** <<>> :properties: :ID: a1a5a51c-bd64-41dd-8162-2bf25b9dccc4 🔚

Indexed form of data and newtype definitions.

** <<>> :properties: :ID: db5fa6be-f1fc-4baa-b31b-0b7520fe2b2a 🔚

Indexed form of type synonyms.

** <<>> :properties: :ID: db9d2215-e851-4257-90bb-26a03647663b 🔚

/*/ additional stucture in language that allows ad-hoc overloading of data types. AKA are to types as type class to methods.

Variaties:

  • data family
  • type synonym families

Defined by pattern matching the partial functions between types. Associates data types by type-level function defined by open-ended collection of valid instances of input types and corresponding output types.

Normal type classes define partial functions from types to a collection of named values by pattern matching on the input types, while type families define partial functions from types to types by pattern matching on the input types. In fact, in many uses of type families there is a single type class which logically contains both values and types associated with each instance. A type family declared inside a type class is called an associated type.

*** /*/

<<>>

** <<>> SCHT: <2019-07-17 Wed> :properties: :ID: 8bd84ba4-4ba0-4907-a19e-1312d2e4ab22 :DRILL_LAST_INTERVAL: 3.86 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 2.5 :DRILL_EASE: 2.36 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-07-13 Sat 00:12] 🔚

Allow use and definition of indexed type families and data families.

// are type-level programming. // are overload data types in the same way that type classes overload functions. // allow handling of dependent types. Before it Functional dependencies and GADTs were used to solve that. // useful for generic programming, creating highly parametrised interfaces for libraries, and creating interfaces with enhanced static iformation (much like dependent types).

Implies: MonoLocalBinds, KindSignatures, ExplicitNamespaces

Two types of /*/ are:

** <<>> :properties: :ID: 0f11555b-90c5-4374-8bb9-6e195cd2df39 🔚

Mistake in the program that can be resolved only by fixing the program.

=error= is a sugar for =undefined=.

Distinct from Exception.

*** /*/

<<>>

** <<>> :properties: :ID: 06ad9cca-a768-498c-906a-dab3ff922217 🔚

Expected but irregular situation.

Distinct from Error. Also see [[Good: Exception vs Error]]

*** /*/

<<>>

** <<>> SCHT: <2019-07-21 Sun> :properties: :ID: 39b1ef68-42be-4430-b7ca-c8a1fc511622 :DRILL_LAST_INTERVAL: 3.855 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.0 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2019-07-17 Wed 22:59] 🔚

Constraints are just handled as types of a particular kind (Constraint). Any type of the kind Constraints can be used as a constraint.

  • Anything which is already allowed in code as a constraint without /*/. Saturated applications to type classes, implicit parameter and equality constraints.
  • Tuples, all of whose component types have kind Constraint. #+begin_src haskell type Some a = (Show a, Ord a, Arbitrary a) -- is of kind Constraint. #+end_src
  • Anything form of which is not yet known, but the user has declared for it to have kind Constraint (for which they need to import it from GHC.Exts): #+begin_src haskell Foo (f :: Type -> Constraint) = forall b. f b => b -> b -- is allowed -- as well as examples involving type families: type family Typ a b :: Constraint type instance Typ Int b = Show b type instance Typ Bool b = Num b

func :: Typ a b => a -> b -> b func = ... #+end_src

** <<>> :properties: :ID: a9e7fcd2-2334-4a4d-940f-b3c20268aec6 🔚

Turns ad hoc polymorphic function into compiled type-specific inmpementations.

*** /*/

<<>> <<>> <<>>

** <<>>

For categories C and J, a diagram of type J in C is a covariant functor D : J → C.

** Cathegory theoretical <<>>

For categories C and J, a J-presheaf on C is a contravariant functor D : C → J.

** Topological <<>>

If X is a topological space, then the open sets in X form a partially ordered set Open(X) under inclusion. Like every partially ordered set, Open(X) forms a small category by adding a single arrow U → V if and only if U ⊆ V. Contravariant functors on Open(X) are called presheaves on X. For instance, by assigning to every open set U the associative algebra of real-valued continuous functions on U, one obtains a presheaf of algebras on X.

** <<>>

The diagonal functor is defined as the functor from D to the functor category D^C which sends each object in D to the constant functor at that object.

** <<>>

For a fixed index category J, if every functor J → C has a limit (for instance if C is complete), then the limit functor C^J → C assigns to each functor its limit. The existence of this functor can be proved by realizing that it is the right-adjoint to the diagonal functor and invoking the Freyd adjoint functor theorem. This requires a suitable version of the axiom of choice. Similar remarks apply to the colimit functor (which is covariant).

** <<>>

The map which assigns to every vector space its dual space and to every linear map its dual or transpose is a contravariant functor from the category of all vector spaces over a fixed field to itself.

** <<>>

Consider the category of pointed topological spaces, i.e. topological spaces with distinguished points. The objects are pairs (X, x0), where X is a topological space and x0 is a point in X. A morphism from (X, x0) to (Y, y0) is given by a continuous map f : X → Y with f(x0) = y0.

To every topological space X with distinguished point x0, one can define the fundamental group based at x0, denoted π1(X, x0). This is the group of homotopy classes of loops based at x0. If f : X → Y is a morphism of pointed spaces, then every loop in X with base point x0 can be composed with f to yield a loop in Y with base point y0. This operation is compatible with the homotopy equivalence relation and the composition of loops, and we get a group homomorphism from π(X, x0) to π(Y, y0). We thus obtain a functor from the category of pointed topological spaces to the category of groups.

In the category of topological spaces (without distinguished point), one considers homotopy classes of generic curves, but they cannot be composed unless they share an endpoint. Thus one has the fundamental groupoid instead of the fundamental group, and this construction is functorial.

** <<>>

A contravariant functor from the category of topological spaces (with continuous maps as morphisms) to the category of real associative algebras is given by assigning to every topological space X the algebra C(X) of all real-valued continuous functions on that space. Every continuous map f : X → Y induces an algebra homomorphism C(f) : C(Y) → C(X) by the rule C(f)(φ) = φ ∘ f for every φ in C(Y).

** <<>>

The map which sends every differentiable manifold to its tangent bundle and every smooth map to its derivative is a covariant functor from the category of differentiable manifolds to the category of vector bundles.

Doing this constructions pointwise gives the tangent space, a covariant functor from the category of pointed differentiable manifolds to the category of real vector spaces. Likewise, cotangent space is a contravariant functor, essentially the composition of the tangent space with the dual space above.

** <<<Group action / representation>>>

Every group G can be considered as a category with a single object whose morphisms are the elements of G. A functor from G to Set is then nothing but a group action of G on a particular set, i.e. a G-set. Likewise, a functor from G to the category of vector spaces, Vect_K, is a linear representation of G. In general, a functor G → C can be considered as an "action" of G on an object in the category C. If C is a group, then this action is a group homomorphism.

** <<>>

Assigning to every real (complex) Lie group its real (complex) Lie algebra defines a functor.

** <<>>

If C denotes the category of vector spaces over a fixed field, with linear maps as morphisms, then the tensor product V ⊗ W defines a functor C × C → C which is covariant in both arguments.

** <<>>

The functor U : Grp → Set which maps a group to its underlying set and a group homomorphism to its underlying function of sets is a functor.[8] Functors like these, which "forget" some structure, are termed forgetful functors. Another example is the functor Rng → Ab which maps a ring to its underlying additive abelian group. Morphisms in Rng (ring homomorphisms) become morphisms in Ab (abelian group homomorphisms).

** <<>>

Going in the opposite direction of forgetful functors are free functors. The free functor F : Set → Grp sends every set X to the free group generated by X. Functions get mapped to group homomorphisms between free groups. Free constructions exist for many categories based on structured sets. See free object.

** <<>>

To every pair A, B of abelian groups one can assign the abelian group Hom(A, B) consisting of all group homomorphisms from A to B. This is a functor which is contravariant in the first and covariant in the second argument, i.e. it is a functor Abop × Ab → Ab (where Ab denotes the category of abelian groups with group homomorphisms). If f : A1 → A2 and g : B1 → B2 are morphisms in Ab, then the group homomorphism Hom(f, g): Hom(A2, B1) → Hom(A1, B2) is given by φ ↦ g ∘ φ ∘ f. See Hom functor.

** <<>>

We can generalize the previous example to any category C. To every pair X, Y of objects in C one can assign the set Hom(X, Y) of morphisms from X to Y. This defines a functor to Set which is contravariant in the first argument and covariant in the second, i.e. it is a functor Cop × C → Set. If f : X1 → X2 and g : Y1 → Y2 are morphisms in C, then the group homomorphism Hom(f, g) : Hom(X2, Y1) → Hom(X1, Y2) is given by φ ↦ g ∘ φ ∘ f.

Functors like these are called representable functors. An important goal in many settings is to determine whether a given functor is representable.

** <<>> ** <<>>

/proper definition/

/*/ dual to induction. Generalises to corecursion.

** <<>> ** <<>> ** Continuation :PROPERTIES: :ID: 50ec8b91-640d-4fe3-8e68-00d5a4bd6d3d :END:

*** Continuation passing style

**** /*/

CPS

** Control.Concurrent.Async

Good library for concurrency programming.

** Semilattice

  • Citation

"One of the finer points of the Haskell community has been its propensity for recognizing abstract patterns in code which have well-defined, lawful representations in mathematics." (Chris Allen, Julie Moronuki - "Haskell Programming from First Principles" (2017))

  • Good code :drill: :properties: :ID: 0061ec53-dc1b-40a8-a00a-f07fd4213be2 🔚

** <<<Good: Type aliasing>>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: db5d6252-f9b1-4c2e-ab00-a4a99d026c2a :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:54] 🔚

Use data type aliases to deferentiate logic of values.

** <<<Good: Type wideness>>> :drill: SCHT: <2021-01-28 Thu> :properties: :ID: f84197b4-6d5d-4f8f-bb4d-3c6a1460a37b :DRILL_LAST_INTERVAL: 305.9666 :DRILL_REPEATS_SINCE_FAIL: 7 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.42 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-28 Sat 19:16] 🔚

Wider the type the more it is polymorphic, means it has broader application and fits more types.

The more constrained system has more usefulness.

Unconstrained means most flexible, but also most useless.

** <<<Good: Print>>> :drill: SCHT: <2020-10-24 Sat> :properties: :ID: 1d0f6f0e-2d81-4c35-a9b3-a362557121f2 :DRILL_LAST_INTERVAL: 228.9343 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.167 :DRILL_EASE: 2.76 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:59] 🔚

#+begin_src haskell print :: Show a => a -> IO () print a = putStrLn (show a) #+end_src

** <<<Good: Fold>>> :drill: SCHT: <2020-07-09 Thu> :properties: :ID: e646277c-54f3-47c4-b721-b3721acc6a6f :DRILL_LAST_INTERVAL: 77.5823 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.75 :DRILL_EASE: 2.8 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:35] 🔚

=foldr= spine recursion intermediated by the folding. Can terminate at any point. =foldl= spine recursion is unconditional, then folding starts. Unconditionally recurses across the whole spine, if it infinite - infinitely.

** <<<Good: Computation model>>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: a6b88a42-c287-47ae-9db0-f7c2aa0d0cd3 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:51] 🔚

Model the domain and types before thinking about how to write computations.

** <<<Good: Make bottoms only local>>> :drill: :properties: :ID: 8d96eb06-0984-4325-a447-4e751ff820e0 🔚

** <<<Good: Newtype wrap is ideally transparent for compiler and does not change performance>>> :drill: :properties: :ID: 0a8b1bec-1a25-42e0-b137-232fb01b25d7 🔚

** <<<Good: Instances of types/type classes must go with code you write>>> :drill: :properties: :ID: 2bafb381-43ce-44b0-9abf-ffa1f3f0c6e1 🔚

** <<<Good: Functions can be abstracted as arguments>>> :drill: :properties: :ID: 714c9ca5-052c-4c5b-b3c6-fcd7741250b0 🔚

** <<<Good: Infix operators can be bind to arguments>>> :drill: :properties: :ID: defb1467-4b50-451b-8fb3-ab12af4409af 🔚

** <<<Good: Arbitrary>>> :drill: SCHT: <2020-05-18 Mon> :properties: :ID: 7c3cb682-9b20-471b-9483-7a22c3ec468d :DRILL_LAST_INTERVAL: 87.1562 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 11 :DRILL_FAILURE_COUNT: 3 :DRILL_AVERAGE_QUALITY: 3.727 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:10] 🔚

Product types can be tested as a product of random generators. Sum types require to implement generators with separate constructors, and picking one of them, use =oneof= or =frequency= to pick generators.

** <<<Good: Principle of Separation of concerns>>> :drill: :properties: :ID: a07f55f7-1a15-4aa9-b8c8-fb58149924d7 🔚

** <<<Good: Function composition>>> :drill: :properties: :ID: ade1516e-44f1-4a8e-bfe4-5b773d0f27d6 🔚

In Haskell inline composition requires: #+begin_src haskell h.g.f $ i #+end_src

Function application has a higher priority than composition. That is why parentheses over argument are needed. This precedence allows idiomatically compose partially applied functions.

But it is a way better then: #+begin_src haskell h (g (f i)) #+end_src

** <<<Good: Point-free>>> :drill: SCHT: <2020-07-21 Tue> :properties: :ID: 62f8356a-69a2-46e9-ab0f-1a9b5bdfe797 :DRILL_LAST_INTERVAL: 89.5155 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.9 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:40] 🔚

Use Tacit very carefully - it hides types and harder to change code where it is used. Use just enough Tacit to communicate a bit better. Mostly only partial point-free communicates better.

*** <<<Good: Point-free is great in multi-dimentions>>> :drill: SCHT: <2020-10-07 Wed> :properties: :ID: 0eb49ad1-9992-4707-88c8-64ff7f8c3cbb :DRILL_LAST_INTERVAL: 267.3 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-01-14 Tue 14:00] 🔚

BigData and OLAP analysis.

** <<<Good: Functor application>>> :drill: SCHT: <2020-09-18 Fri> :properties: :ID: 67dab545-6f12-4d3a-b8c7-acfc0f267d03 :DRILL_LAST_INTERVAL: 268.457 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2019-12-25 Wed 18:53] 🔚

Function application on n levels beneath: #+begin_src haskell (fmap . fmap) function twoLevelStructure #+end_src

How =fmap . fmap= typechecks: #+begin_src haskell (.) :: (b -> c) -> (a -> b) -> a -> c fmap :: Functor f => (m -> n) -> f m -> f n fmap :: Functor g => (x -> y) -> g x -> g y

fmap . fmap :: (Functor f, Functor g) => ((g x -> g y) -> f . g x -> f . g y) -> (( x -> y) -> g x -> g y) -> ( x -> y) -> f . g x -> f . g y fmap . fmap :: (x -> y) -> f . g x -> f . g y #+end_src

** <<<Good: Parameter order>>> :drill: :properties: :ID: 05494702-c932-47ef-a91b-6ffd27a6b51f 🔚

In functions parameter order is important. It is best to use first the most reusable parameters. And as last one the one that can be the most variable, that is important to chain.

** <<<Good: Applicative monoid>>> :drill: :properties: :ID: e417b5f0-fc63-45e0-971a-68b2c6ae4d22 🔚

There can be more than one valid Monoid for a data type. && There can be more than one valid Applicative instance for a data type. -> There can be differnt Applicatives with different Monoid implementations.

** <<<Good: Creative process>>> :drill: :properties: :ID: b5b69b79-144b-49f0-a997-ed7c056e182b 🔚

*** Pick phylosophy principles one to three the more - the harder the implementation

*** Draw the most blurred representation

*** Deduce abstractions and write remotely what they are

*** Model of computation

**** Model the domain

**** Model the types

**** Think how to write computations

*** Create

** Good: About operators =(<$ )= =( *>)= =(< )= =(>> )= :drill: SCHT: <2020-07-05 Sun> :properties: :ID: 25e19a69-21f7-435a-b2ff-f1a489e9a159 :DRILL_LAST_INTERVAL: 73.9205 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.6 :DRILL_EASE: 2.14 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:44] 🔚

Where character is not present - discard the according processing of a parameter. =(>> )= is an exception, it does the reverse. ignores the first parameter, in fact =>> \equiv *>=.

= *>= does the proper action: does calculation, but ignores the value from the first argument.

** <<<Good: About functions like {mapM, sequence}_>>> :drill: SCHT: <2020-08-09 Sun> :properties: :ID: 03ad3fac-221c-42de-8b63-e7ccf645f183 :DRILL_LAST_INTERVAL: 170.0329 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.833 :DRILL_EASE: 2.52 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-02-20 Thu 23:14] 🔚

Trailing =_= means ignoring the result.

** <<<Good: Guideliles>>> :drill: :properties: :ID: 30bdcb7b-27f5-4d34-993d-d4a710d41969 🔚

*** Wiki.haskell

**** Documentation

***** Comments write in application terms, not technical.

***** Tell what code needs to do not how it does.

**** Haddoc

***** Put haddock comments to ever exposed data type and function.

***** Haddock header #+begin_src haskell {- | Module : <File name or $Header$ to be replaced automatically> Description : Copyright : (c) License :

Maintainer : Stability : unstable | experimental | provisional | stable | frozen Portability : portable | non-portable ()

-} #+end_src

**** Code

***** Try to stay closer to portable (Haskell98) code

***** Try make lines no longer 80 chars

***** Last char in file should be newline

***** Symbolic infix identifiers is only library writer right

***** Every function does one thing.

** <<<Good: Use Typed holes to progress the code>>> :drill: SCHT: <2020-12-24 Thu> :properties: :ID: 27c029f7-9299-4d74-b2e3-5064b57dce4a :DRILL_LAST_INTERVAL: 269.9269 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 3.0 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-03-29 Sun 19:44] 🔚

Typed holes help build code in complex situations.

** <<<Good: Haskell allows infinite terms but not infinite types>>> :drill: SCHT: <2020-09-28 Mon> :properties: :ID: 6299a8fe-2bb5-4d63-94a6-4aa8561027ad :DRILL_LAST_INTERVAL: 154.9554 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 9 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.001 :DRILL_EASE: 2.62 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:57] 🔚

That is why infinite types throw infinite type error.

** <<<Good: Use type sysnonims to differ the information>>> :drill: SCHT: <2020-05-13 Wed> :properties: :ID: 43181c5d-630a-4b5d-815c-272e26c8e42f :DRILL_LAST_INTERVAL: 182.0624 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 6 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.66 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2019-11-13 Wed 19:27] 🔚

Even if there is types - define type synonims. They are free. That distinction with synonims, would allow TypeSynonymInstances, which would allow to create a diffrent type class instances and behaviour for different information.

** Good: Use =Control.Monad.Except= instead of =Control.Monad.Error= :drill: :properties: :ID: 4ba41ec2-5115-4be9-9aa4-4892322db1e8 🔚

** <<<Good: Monad OR Applicative>>>

**** Start writing monad using 'return', 'ap', 'liftM', 'liftM2', '>>' instead of 'do','>>='

If you wrote code and really needed only those - move that code to Applicative. #+begin_src haskell return -> pure ap -> <*> liftM -> liftA -> <$>

-> *> #+end_src

**** Basic case when Applicative can be used

Can be rewriten in Applicative: #+begin_src haskell func = do a <- f b <- g pure (a, b) #+end_src

Can't be rewritten in Applicative: #+begin_src haskell somethingdoSomething' n = do a <- f n b <- g a pure (a, b) #+end_src (f n) creates monadic structure, binds ot to /a/ wich is consumed then by g.

**** Applicative block vs Monad block

With Type Applicative every condition fails/succseeds independently. It needs a boilerplate data constructor/value pattern matching code to work. And code you can write only for so many cases and types, so boilerplate can not be so flexible as Monad that allows polymorphism. With Type Monad computation can return value that dependent from the previous computation result. So abort or dependent processing can happen.

** <<<Good: Linear type>>> :drill: :properties: :ID: 820c915d-e3fe-4ff5-acb3-9ef205f70639 🔚 Linear types are great to control/minimize resource usage.

** Good: Exception vs Error :drill: :properties: :ID: 3d6d7f0f-252c-4cfb-b25c-18687fd762ca 🔚

Many languages and Haskell have it all mixup. Here is table showing what belongs to one or other in standard libraries:

|-----------+---------------------------------------------------------------------------------------------| | Exception | Prelude.catch, Control.Exception.catch, Control.Exception.try, IOError, Control.Monad.Error | | Error | error, assert, Control.Exception.catch, Debug.Trace.trace |

** <<<Good: Let vs. Where>>> :drill: :properties: :ID: 4ded4b6f-3593-4203-88a6-ce1b6f5fa71e 🔚

=let ... in ...= is a separate expression. In contrast, =where= is bound to a surrounding syntactic construct (namespace).

** <<<Good: RankNTypes>>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: f13bc2c3-be6c-4bde-96c9-09c9447a1c94 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:04] 🔚

Can powerfully synergyze with ScopedTypeVariables.

** <<<Good: Handling orphan instance>>> :drill: :properties: :ID: 8fb7360d-a105-4827-bba0-232e89c3558d 🔚

Practice to address orphan instances:

Does type class or type defined by you: | Type class | Type | Recommendation | |------------+------+----------------------------------------------------| | | \check | {Type, instance} in the same module | | \check | | {Type class & instance} in the same module | | | | {Define newtype wrap, its instances} in the same module |

** <<<Good: Smart constructor>>> :drill: :properties: :ID: 068296b6-24b3-4694-bb2c-4229584d150f 🔚

Only proper smart constructors should be exported. Do not export data type constructor, only a type.

** <<<Good: Thin category>>> :drill: :properties: :ID: 8e9abcba-09fa-465b-90a1-b93c3941ec93 🔚

In /*/ all morphisms are epimorphisms and monomorphisms.

** <<<Good: Recursion>>> :drill: :properties: :ID: ec8407dd-2c5f-4fef-9e8e-99a4a45a44b4 🔚

Writing/thinking about recursion:

  1. Find the base cases, om imput of which the answer can be provided right away. There is mosly one base case, but sometimes there can be several of them. Typical base cases are: zero, the empty list, the empty tree, null, etc.
  2. Do inductive case. The recursive invocation. The argument of a recursive call needs to be smaller then the current argument. So it would be gradually closer to the base case. The idea is that processes eventually hits the base case.

Simple functional application is used in the recursion. Assume that the functions would return the right result.

** <<<Good: Monoid>>> :drill: SCHT: <2020-08-15 Sat> :properties: :ID: fcafc131-d995-4712-8fa7-35ea6668cd27 :DRILL_LAST_INTERVAL: 10.3873 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.0 :DRILL_EASE: 2.46 :DRILL_LAST_QUALITY: 3 :DRILL_LAST_REVIEWED: [2020-08-05 Wed 12:24] 🔚

=<>=: Sets - union. Maps - left-biased union. Number - =Sum=, =Product= form separate monoid categories.

** <<<Good: Free monad>>> :drill: SCHT: <2020-06-14 Sun> :properties: :ID: e5c45f71-de00-48fb-bb31-a65a2893abdc :DRILL_LAST_INTERVAL: 48.7167 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 5 :DRILL_FAILURE_COUNT: 1 :DRILL_AVERAGE_QUALITY: 3.4 :DRILL_EASE: 2.32 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:50] 🔚

The main case of usage of Free monads in Haskell:

Start implementation of the monad from a Free monad, drafting the base monadic operations, then add custom operations.

Gradually build on top of Free monad and try to find homomorphisms from monad to objects, and if only objects are needed - get rid of the free monad.

** <<<Good: Use mostly where clauses>>> :drill: :properties: :ID: 08aaf74e-7f08-4422-9750-5548dcf4d4df 🔚

** <<<Good: Where clause is in a scope with function parameters>>> :drill: :properties: :ID: 80f5570c-7c7b-425c-bfc6-de236bcfe567 🔚

** <<<Good: Strong preference towards pattern matching over {head, tail, etc.} functions>>> :drill: :properties: :ID: bbe1acaf-7bda-4b47-b595-dff92f011b46 🔚

=head= and =tail= and alike functions are often partial (unsafe) funcitons.

** <<<Good: Patternmatching is possible on monadic bind in do>>> :drill: :properties: :ID: b9a31f63-ff7b-4d56-bae5-96c5eabbd038 🔚

Example: #+begin_src haskell instance (Monad m) => Functor (StateT s m) where fmap f m = StateT $ \s -> do (x, s') <- runStateT m s -- Here is a pattern matching bind return (f x, s') #+end_src ** <<<Good: Applicative vs Monad>>> :drill: :properties: :ID: 0b5589bb-1426-434d-a018-69a9cd29731e 🔚

Giving not =Monad= but =Applicative= requirement allows parralel computation, but if there should be a chaining of the intemidiate state - it must be monadic.

** <<<Good: StateT, ReaderT, WriterT>>> :drill: :properties: :ID: dcfdc4bf-88cb-4310-b40b-3c3d68aff3db 🔚

=Reader= trait: =(r ->)=.

=Writer= trait: =(a, w)=.

=State= trait is combination of both: #+begin_src haskell newtype StateT s m a = StateT { runStateT :: s -> m (a, s) }

newtype ReaderT r m a = ReaderT { runReaderT :: r -> m a }

newtype WriterT w m a = WriterT { runWriterT :: m (a, w) } #+end_src

=State= trait fully replaces =writer=.

** <<<Good: Working with MonadTrans and lift>>> :drill: SCHT: <2020-05-01 Fri> :properties: :ID: 052f4701-8343-4b6c-af42-b45818a00595 :DRILL_LAST_INTERVAL: 4.14 :DRILL_REPEATS_SINCE_FAIL: 2 :DRILL_TOTAL_REPEATS: 1 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 5.0 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-27 Mon 00:03] 🔚

From the =lift . pure = pure= follows that =MonadTrans= type can have a =pure= defined with =lift=.

Stacking of =MonadTrans= monads can result in a lot of chained =lift= and unwraps. There is many ways to cope with that but the most robust and common is to abstract representation with =newtype= on the =Monad= stack. This can reduce caining or remove the manual lifting withing the Monad. For perfect combination for contributors to be able to extend the code - keep the =Internal= module that has a raw representation.

** <<<Good: Don't mix Where and Let>>> :drill: :properties: :ID: 0287a360-05cd-41a3-b744-2ec5af34be6a 🔚

=let= and =where= create a recursive set of definitions with can explode, don't mix them togather in code.

** <<<Good: Where vs. Let>>> :drill: :properties: :ID: 6318ed75-8584-4f73-8ef8-6708521a7cd9 🔚

Let is self-recursive lazy pattern. It is checked and errors only at execution time. Binds only inside expression it is binded to.

Where is a part of definition, scoped over definition implemetations and guards, not self-recursive.

** <<<Good: The proper nature algorithm that models behaviour of many objects is computation heavy>>> :drill: :properties: :ID: 9ed1a3db-196a-4994-bf3f-372880a9cc72 🔚

#+begin_quote God does not care about our mathematical difficulties. He integrates empirically. #+end_quote

One who is found of mathematical meaning loves to apply it. But if we implement the "real" algorithms behind nature processes, we face the need to go through the computations of properties of all particles.

Computation of nature is always a middle way between ideal theory behaviour and computation simplification.

** <<<Good: In Haskell parameters bound by lambda declaration instantiate to only one concrete type>>> :properties: :ID: 25061918-c9bb-42b8-a7a5-13e109f44c53 🔚

Because of let-bound polymorphism:

This is illegal in Haskell: #+begin_src haskell foo :: (Int, Char) foo = (\f -> (f 1, f 'a')) id #+end_src

Lambda-bound function (i.e., one passed as argument to another function) cannot be instantiated in two different ways, if there is a let-bound polymorphism.

** Good: Instance is a good structure to drew a type line

Instances for data type can differentiate by constraints & types of arguments. So instance can preserve type boundary, and data type declaration can stay very polymorphic. If the need to extend the type boundaries arrives - the instances may extend, or new instances are created, while used data type still the same and unchanged.

** <<<Good: MTL vs. Transformers>>> :drill: :PROPERTIES: :ID: e0994280-e18b-4b6a-afde-b2a8748aebb9 :END:

Default ot =mtl=.

=Transformers= is Haskell 98, doesn't have funcitonal dependencies, lacks the monad classes, has manual lift of operations to the composite monad.

=MTL= extends =trasformers=, providing more instances, features and possibilities, may include alternative packages features as =mtl-tf=.

  • Bad code :drill: :properties: :ID: e60a3084-2f70-4363-8f47-6df2e610d4ad 🔚

** <<>>

*** Bad: Dangerous LANGUAGE pragma option

  • DatatypeContexts
  • OverlappingInstances
  • IncoherentInstances
  • ImpredicativeTypes
  • AllowAmbigiousTypes
  • UndecidableInstances - often
  • Useful functions to remember

** Prelude #+begin_src haskell enumFromTo enumFromThenTo reverse show :: Show a => a -> String flip sequence - Evaluate each monadic action in the structure from left to right, and collect the results. :sprint - show variables to see what has been evaluated already. minBound - smaller bound maxBound - larger bound cycle :: [a] -> [a] - indefinitely cycle s list repeat - indefinit lis from value elemIndex e l - return first index, returns Maybe fromMaybe (default if Nothing) e ::Maybe a -> a lookup :: Eq a => a -> [(a, b)] -> Maybe b #+end_src

*** Ord compare

*** Calc div - always makes rounding down, to infinity divMod - returns a tuple containing the result of integral division and modulo

*** List operations #+begin_src haskell concat - [ [a] ] -> [a] elem x xs - is element a part of a list zip :: [a] -> [b] -> [(a, b)] - zips two lists together. Zip stops when one list runs out. zipWith :: (a -> b -> c) -> [a] -> [b] -> [c] - do the action on corresponding elements of list and store in the new list #+end_src

** Data.List #+begin_src haskell intersperse :: a -> [a] -> [a] - gets the value and incerts it between values in array nub - remove duplicates from the list #+end_src

** Data.Char #+begin_src haskell ord (Char -> Int) chr (Int -> Char) isUpper (Char -> Bool) toUpper (Char -> Char) #+end_src

** QuickCheck #+begin_src haskell quickCheck :: Testable prop => prop -> IO ()

quickCheck . verbose - run verbose mode #+end_src

  • Tool :drill: :properties: :ID: 756dd451-6df6-4c86-8ff8-b431f2943685 🔚

** ghc-pkg

List installed packages: #+begin_src fish ghc-pkg list #+end_src

** Integration of NixOS/Nix with Haskell IDE Engine (HIE) and Emacs (Spacemacs) :properties: :ID: cd7eefc7-9fed-4ea0-8273-17ef478265f2 🔚

*** 1. Install the Cachix

Upstream doc: https://github.com/cachix/cachix

*** 2. Installation of HIE

Upstream doc: https://github.com/infinisil/all-hies/#cached-builds

**** 2.1. Provide cached builds

#+begin_src fish cachix use all-hies #+end_src

**** 2.2.a. Installation on NixOS distribution:

#+begin_src nix { config, pkgs, ... }:

let

all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {};

in { environment.systemPackages = with pkgs; [

(all-hies.selection { selector = p: { inherit (p) ghc865 ghc864; }; })

]; } #+end_src

Insert your GHC versions.

Switch to new configuration:

#+begin_src fish sudo -i nixos-rebuild switch #+end_src

**** 2.2.b. Installation with Nix package manager:

#+begin_src fish nix-env -iA selection --arg selector 'p: { inherit (p) ghc865 ghc864; }' -f 'https://github.com/infinisil/all-hies/tarball/master' #+end_src

Insert your GHC versions.

*** 3. Emacs (Spacemacs) configuration:

#+begin_src elisp

dotspacemacs-configuration-layers '(

auto-completion

(lsp :variables
     default-nix-wrapper (lambda (args)
                           (append
                            (append (list "nix-shell" "-I" "." "--command" )
                                    (list (mapconcat 'identity args " "))
                                    )
                            (list (nix-current-sandbox))
                            )
                           )

     lsp-haskell-process-wrapper-function default-nix-wrapper
     )

(haskell :variables
         haskell-enable-hindent t
         haskell-completion-backend 'lsp
         haskell-process-type 'cabal-new-repl
         )

)

dotspacemacs-additional-packages '( direnv nix-sandbox )

(defun dotspacemacs/user-config ()

(add-hook 'haskell-mode-hook 'direnv-update-environment) ;; If direnv configured

) #+end_src

Where:

=auto-complettion= configures =YASnippet=.

=nix-sandbox= (https://github.com/travisbhartwell/nix-emacs) has a great helper functions. Using =nix-current-sandbox= function in =default-nix-wrapper= that used to properly configure =lsp-haskell-process-wrapper-function=.

Configuration of the =lsp-haskell-process-wrapper-function default-nix-wrapper= is a key for HIE to work in =nix-shell=

Inside =nix-shell= the =haskell-process-type 'cabal-new-repl= is required.

/Configuration was reassembled from: [[https://github.com/emacs-lsp/lsp-haskell/blob/8f2dbb6e827b1adce6360c56f795f29ecff1d7f6/lsp-haskell.el#L57]] & its authors config: [[https://github.com/sevanspowell/dotfiles/blob/master/.spacemacs]]/

Refresh Emasc.

*** 4. Open the Haskell file from a project

Open system monitor, observe the process of environment establishing, packages loading & compiling.

*** 5. Be pleased writing code

[[file:images/Screenshot_20190727_134446.png]]

Now, the powers of the Haskell, Nix & Emacs combined. It's fully in your hands now. Be cautious - you can change the world.

*** 6. (optional) Debugging

  1. If recieving sort-of:

#+begin_src text readCreateProcess : cabal-helper-wrapper failure #+end_src

HIE tries to run =cabal= operations like on the non-Nix system. So it is a problem with detection of =nix-shell= environment, running inside it.

  1. If HIE keeps getting ready, failing & restarting - check that the projects =ghc --version= is declared in your =all-hie= NixOS configuration.

** GHC

*** GHC code check flags

Additional to default settings it is useful to use =-W=, =-Wcompat=. =-Wall= is for purists and would raise noise. They can be supplied in CLI as also in =.cabal= ghc-option. fr

=-W= turns on additional useful warnings:

  • =-Wunused-binds=
  • =-Wunused-matches=
  • =-Wunused-foralls=
  • =-Wunused-imports=
  • =-Wincomplete-patterns=
  • =-Wdodgy-exports=
  • =-Wdodgy-imports=
  • =-Wunbanged-strict-patterns=

=-Wall= turns on all warnings that indicate potentially suspicious code.

=-Weverything= turns on all warnings supported by compiler.

=-Wcompat= turns on warnings that will be enabled by default in the future GHC releases, allows library authors make the code compatible in advance for future GHC releases.

=-Werror= promotes warnings into fatal errors, may be useful for CI runs.

=-w= turns off all warnings.

** GHCI *** Debugging in GHCI

Provides:

  • set a breakpoints
  • observe step-by-step evaluation
  • tracing mode

Breakpoints #+begin_src text :break 2 :show breaks :delete 0 :continue #+end_src

Step-by-step #+begin_src text :step main #+end_src

List information at the breakpoint #+begin_src text :list #+end_src

What been evaluated already #+begin_src text :sprint name #+end_src

** GHCID

Commands to run the compile/check loop:

=cabal= > =3.0= command: #+begin_src fish ghcid --command='cabal v2-repl --repl-options=-fno-code --repl-options=-fno-break-on-exception --repl-options=-fno-break-on-error --repl-options=-v1 --repl-options=-ferror-spans --repl-options=-j' #+end_src

=cabal= < =3.0= command: #+begin_src fish ghcid --command='cabal new-repl --ghc-options=-fno-code --ghc-options=-fno-break-on-exception --ghc-options=-fno-break-on-error --ghc-options=-v1 --ghc-options=-ferror-spans --ghc-options=-j' #+end_src

=nix-shell= =cabal= > =3.0= command: #+begin_src fish nix-shell --command 'ghcid --command="cabal v2-repl --repl-options=-fno-code --repl-options=-fno-break-on-exception --repl-options=-fno-break-on-error --repl-options=-v1 --repl-options=-ferror-spans --repl-options=-j" ' #+end_src

=nix-shell= =cabal= < =3.0= command: #+begin_src fish nix-shell --command 'ghcid --command="cabal new-repl --ghc-options=-fno-code --ghc-options=-fno-break-on-exception --ghc-options=-fno-break-on-error --ghc-options=-v1 --ghc-options=-ferror-spans --ghc-options=-j" '

#+end_src

** runghc

Run Haskell code without first having to compile them.

Official tool in GHC package.

** Packaging

There is a number of good quality projects that export Cabal/Hackage to other packaging systems, big distribution systems and companies rely on them:

*** Cabal

  • v1 generation of features used/uses own cabal (now legacy) methods of handling packages.
  • v2 generation of features (current) uses Nix-like methods internally to handle packages.

Currently Cabal migrated to use of v2 generation by default.

Useful abilities:

exec - loads the GHC/GHCI env and launches the passed executable.

haddock - builds the documentaiton and places it into v1 -> dist, v2 -> dist-newstyle directories.

sdist - run a thorough process, properly follow .cabal instructions, assemble mentioned files and generate a source distribution file .tar.gz.

upload - upload source distribution file to Hackage.

*** Nix

Peter Simmons (peti) - the main creator maintainer maintainer of the Haskell stack and packages ("package set") in Nixpkgs. He is the central person that created most of the tooling and automation of importing Haskell into Nixpkgs.

**** <<>>

Besides documentation of Nixpkgs manual there is a Nixpkgs Haskell lib.

*** cabal2nix

Created/maintained by =peti=.

This tool runs on one compiler version.

*** hackage2nix

Allows to clones info from Hackage and convert it into Nix language. Is developed/resides/embedded in cabal2nix project.

*** cabal2spec - Cabal to RPM

Also created and maintained by =peti=, he uses it for OpenSUSE.

*** nix-tools

Translates Cabals project description to a Nix expression.

*** haskell.nix

Automatically translates Cabal/Stack project and dependencies into Nix code. Provides IFD (import from derivation) functions that minimize the amount of Nix code that is needed to be added. So it autogenerates Nix code hald way for your purposes.

Project of IOHK and has an active big respectable team.

** Emacs/Spacemacs

In Haskell programming spacemacs/jump-to-definition is your friend, let yourself - it will guide you.

My (Anton-Latukha's) Spacemacs configuration for Haskell as at: https://github.com/Anton-Latukha/.spacemacs.d/blob/private/init.el. Look there for a Haskell keyword, there is layer configuration, and the init boot config inside (defun dotspacemacs/user-config ().

** Continuous integration platrorms (CIs) for Open Source Haskell projets

Since Open Source projects mostly use free tiers of CIs, and different CIs have different features - there is a constant flux of how to construct the best possible integration pipeline for Haskell projects.

The current state of affairs is best put in this quote: #+html:

Quote: 2020-02-29: Gabriel Gonzalez about CIs for Haskell Opens Source projects #+latex: \caption{\href{https://github.com/dhall-lang/dhall-haskell/issues/1678#issuecomment-592960057}{Quote: 2020-02-29: Gabriel Gonzalez about CIs for Haskell Opens Source projects}} #+caption: [[https://github.com/dhall-lang/dhall-haskell/issues/1678#issuecomment-592960057][2020-02-29: Gabriel Gonzalez about CIs for Haskell Opens Source projects]] #+name: quote--gonzales-ci #+begin_quote Probably the biggest constraint is whether or not CI needs to test Windows or OS X, since build machines for those are harder to come by. We currently use AppVeyor for Windows builds and Travis for OS X builds since they are free. For Linux you can basically use any CI provider, but in this case I pay for a Linode VM which I use to host all Dhall-related infrastructure (i.e. all of the *.dhall-lang.org domains), so I reuse that to host Hydra for Nix-related CI so that I can use more parallelism and more efficient caching to test a wider range of GHC versions on a budget.

For testing OS X and Windows platforms we use stack. The main reason we don't use Nix for either platform is that Nix only supports building release binaries on Linux (and even then it's still experimental).

So the basic summary I can give is:

For testing everything other than cross-platform support: Nix + Linux is best in my opinion

... because you get much more control and intelligent build caching, which is usually where most CI solutions fall short

For cross-platform support: stack + whatever CI provider provides free builds for that platform

Also, if you ever can pay for your own NixOS VM and you want to reuse the setup I built, you can find the NixOS configuration for dhall-lang.org here:

https://github.com/dhall-lang/dhall-lang/tree/master/nixops #+end_quote

  • Library :drill: :properties: :ID: dfc5ca16-c4ee-4ef5-bee6-b44a4b29f51d 🔚

** Exceptions

*** Exceptions - optionally pure extensible exceptions that are compatible with the mtl *** Safe-exceptions - safe, simple API equivalent to the underlying implementation in terms of power, encourages best practices minimizing the chances of getting the exception handling wrong. *** Enclosed-exceptions - capture exceptions from the enclosed computation, while reacting to asynchronous exceptions aimed at the calling thread.

** Memory management

*** membrain - type-safe memory units

** Parsers - megaparsec

** CLIs - optparse-applicative

Builds a shell API and parses tose command line options.

Abilities:

  • read & validate the arguments passed in any order to the command;
  • handle and report errors;
  • generate and have comprehensive docs that help user;
  • generate context-sensitive complettions for bash, zsh, fish.

Introduction (what library is for) Data model (diagram) -- sometimes seeing at once is better then a thousand words of explanation Shortly describe where is speccing happens & belongs, where is parsing happens & belongs, where one can custom hande parsed data on top of what is provided in lib. So now readers roughly know the data model and what are structural parts and where they are

*** Modifiers {Attributes}

Settings that configure the builder.

  • long - --key
  • short - -k
  • help - info that is put into docs. Does not affet the parsing.
  • helpDoc - same as help, but with Doc type support.
  • metavar - placeholder for the argument seen in the docs. Does not affect the parsing.
  • value - value by default
  • showdefault - in the docs
  • hidden - hide from brief info
  • internal - hide from descriptions
  • style - function to apply to descriptions
  • command - add command as a subparser option. #+begin_src haskell sample :: Parser Sometype sample = subparser $ command "hello" $ info hello $ progDesc "Show greeting" #+end_src

Compose them with <>.

Example: #+begin_src haskell ( long "example" <> short 'e' <> metavar "ARGUMENT_HERE" <> value "defaultVal" <> showdefault <> help "This would produce --example and -e keys for this parser." <> "It has defaultVal if key was not used." <> "And it would show default value in help message") #+end_src

This monoid (Mod f a) should be given to according builder that accepts it.

*** Builders

Builders are the primitive atomic parsers of the library.

#+begin_src fish command argument --option optionArgument #+end_src

  • argument :: ReadM a -> Mod ArgumentFields a -> Parser a General implemetation that uses given reader to parse direct argument.
  • strArgument :: IsString s => Mod ArgumentFields s -> Parser s To consume a string argument directly.
  • option :: ReadM a -> Mod OptionFields a -> Parser a General implementation. Allows to use the given reader.
  • flag :: a {default value} -> a {active value} -> Mod FlagFields a {option modifier} -> Parser a Irrefutable \Rightarrow no termination for some or many, for them use flag'.
  • switch :: Mod FlagFields Bool -> Parser Bool Macro for Boolean flag: #+begin_src haskell switch = flag False True #+end_src Irrefutable \Rightarrow no termination for some or many, for them use flag'
  • flag' :: a {active value} -> Mod FlagFields a {option modifier} -> Parser a Flag parser without a default value. Has sence in composite parser, or when requiring --on OR --off alternatives.
  • infoOption :: String -> Mod OptionFields (a -> a) -> Parser (a -> a) Always stops binary and displays a message.
  • strOption :: IsString s => Mod OptionFields s -> Parser s Taking a String argument.
  • abortOption :: ParseError -> Mod OptionFields (a -> a) -> Parser (a -> a) Always fails immediately.
  • subparser :: Mod CommandFields a -> Parser a Command parser. The command modifier can be used to specify individual commands.

*** Parsers Definitions (if there are needed) How parsers are composed from attributes and builders Examples (if there are needed) Option readers Running a parser *** Composing and more complex parsers Definitions (if there are needed) Applicative on parsers Examples of the use of parsers in the program and how they tie with surrounding data types Alternative Then mention where and how to customize even over that and example *** Error handling *** Shell expansion

... Rename "How it works" into "How library internally implemented"

** HTML - Lucid

** Web applications - Servant

** IO libraries

*** Conduit - practical, monolythic, guarantees termination return

*** Pipes + Pipes Parse - modular, more primitive, theoretically driven

** JSON - aeson

** <<>> :drill: SCHT: <2020-07-06 Mon> :properties: :ID: bb77bcce-6d34-408e-bbc8-ad16e843eeb1 :DRILL_LAST_INTERVAL: 74.9637 :DRILL_REPEATS_SINCE_FAIL: 5 :DRILL_TOTAL_REPEATS: 4 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.7 :DRILL_LAST_QUALITY: 5 :DRILL_LAST_REVIEWED: [2020-04-22 Wed 12:35] 🔚

On 1-st compilation - // analyzes the abstract signatures without loading side modules, doing the type check with assumption that modules provide right type signatures, the process does not emitt any binary code and stores the intermediate code in a special form that allows flexibily connect modules provided. Which allows later to compile project with particular instanciations of the modules. Major work of this process being done by internal Cabal // support and /*/ system that modifies the intermediate code to fit the module.

** DSL

*** [[https://github.com/GaloisInc/ivory]["Ivory"]] - eDSL, safe systems programming, effectively produce C code

  • Draft

** Exception handling

Process of exception handling has:

  • raising an exception
  • gathering information and handling an exception
  • ability to finish important sessions/actions independently of whether exception happened or not. That is why it is called guaranteed finalization of important processes.

Exceptions and their handling are for the boundaries that recieve external things that are not under Haskell control. It is mainly an IO handling. The exception mechanism may be used for internal pure Haskell part - if it grew to complex to sort-out some situation try/catch mechanism can be used, but then avoid use of runtime system exceptions catch and sort programmically and generally avoid it.

Its better to promote exceptions to just checking preconditions.

Wraper with exception handler around function (=f=) call means that all untreated exception of function or its subfunctions would be caught by this wrapper into the scope where wrapper was used (one syntactic level above function =f=).

\begin{tikzcd} s \arrow[rd, "Handle/dispatch"'] & & & \ & m \arrow[rd, "Eval \ inside"'] & & \ & & ... \arrow[rd] & \ & & & h \arrow[lluu, "To \ nearest \ exception \ monad"', dotted, bend right=49] \end{tikzcd}

Any monad that short-curcuits after some condition check of first argument - has exception handling potential.

Laziness as exceptions are computations - means that some issues would be skipped al togather, in parts that are/were not used would never throw exceptions, but also just as computations - exceptions would be raised at different times and states during computations.

Exception throw breaks purity, function was called buy returned a result.

Try to raise and resolve all exceptions befor aquiring external IO resources. And release all resources when or before the exeption can happen.

With concurrency thread could be killed by other threads (that is called to raise an asyncronous exception in the thread).

*** Ideal catching

  • Choose what exceptions to catch. Selection depends on the type.
  • No execution of continuation after throw, only handling.
  • Handle {,a}synchronous exceptions.

*** =Control.Exception.Safe= main sets of functions

  • =try*= - allows handle Either returning types, bridges the exception handling and basic Haskell computation.
  • =handle*= - describes how to handle exception before the monadic action itself.
  • =catch*= - describes how to handle the exception after the monadic action itself.

For asyncronous exceptions there are special function to catch them: =catchAsync= and =handleAsync=.

=catch= and =handle= are to catch specific exception type.

=catches= , =catchesDeep= and =catchesAsync= allows to catch matching an elements in the list, and then handle them.

*** Clean-up of actions/resources

  • =bracket*= - computations to aquire and release resource and computation to run in between.
  • =finally= - allows to run declared computations afterward (even if an exception was raised).
  • =onException= - run computations only if exception happened.

*** Ideal model

  • [X] Exception must include all context information that may be useful.
  • [X] Store information in a form for further probable deeper automatic diagnostic.
  • [X] Sensitive data/dummies for it - can be useful during development.
  • [X] Sensitive data should be stripped from a program logging & exceptions.
  • [X] Exception system should be extendable, data storage & representation should be easily extendable.
  • [X] Exception system should allow easy exaustive checking of errors, since the different errors can happen.
  • [X] Exception system should be automatically well-documented and transparent.
  • [X] Exception system should have controllable breaking changes downstream.
  • [X] Exception system should allow complex composite (sets) exceptions.
  • [X] Exception system should be lightweight on the type signatures of other functions.
  • [X] Exception system should automate the collection of context for a exception.
  • [X] Exception system should have properties and according functions for particular types of errors.

=String= is simple and convinient to throw exception, but really a mistake because it the most cumbersome choise:

  • [X] Any Exception instance can be converted to a =String= with either =show= or =displayException.=
  • [ ] Does not include key debugging information in the error message.
  • [ ] Does not allow developer to access/manage the Exception information.
  • [ ] Exception messages need to be constructed ahead of time, it can not be internationalized, converted to some data/file format.
  • [ ] Exception can have a sensitive information that can be useful for developer during work, but should not be logged/shown to end-user. Stripping it from =Strings= in the changing project is a hard task.
  • [ ] Impossible to rely on this representation for further/deeper inspection.
  • [ ] Impossible to have exhaustive checking - no knowledge no check, no warning if some cases are not handled.

*** Universal exception type

  • [X] Able to inspect every possible error case with pattern match.
  • [X] Self-documenting. Shows the hierarchical system of all exceptions.
  • [X] Transparent. Ability to discern in current situation what exceptions can happen
  • [ ] New exception constructor causes breaking change to downstream.
  • [ ] Wrongly implies completeness. Untreated Errors can happen, different exception can arrive from the outside code.

Sum type must be separate, and product type structure over it. Separate exception type of

*** Individual exception types

  • [X] Writing & seing & working with exactly what will go wrong because there is only one possible error for this type of exception. Pattern match happens only onconditions, constructors that should happen.
  • [X] Knowledge what exectly goes wrong allows wide usage of Either.
  • [ ] It is hard to handle complex exceptions in the unitary system. Real wrorld can return not a particular case, but a set of cases {object not found, path is unreachable, access is denied}.
  • [ ] Type signatures grow, and even can become complex, since every case of exception has its own type.
  • [ ] Impure =throw= that users can/should use for your code must account for all your exception types.

*** Abstract exception type

Exception type entirely opague and inspectable only by accessor functions.

  • [X] Updating the internals without breaking the API
  • [X] Semi-automates the context of exception with passing it to accessors.
  • [X] Predicates can be applied to more than one constructor. Which are properties that allows to make complex exceptions much easier to handle.
  • [ ] Not self-documenting.
  • [ ] Possible options by design are hidden from the downstream, documentation must be kept.
  • [ ] When you change the exception handling/throwing errors it does not shows to the downstream.

*** Composit approach

Provide the set of constructors and also a set of predicates and set of accessors. Use pattern synonyms to provide a documented accessor set without exposing internal data type.

*** The changes in GHC 8.8

#+begin_quote The fail method of Monad has been removed in favor of the method of the same name in the MonadFail class.

MonadFail(..) is now exported from the Prelude and Control.Monad modules. The MonadFailDesugaring language extension is now deprecated, as its effects are always enabled. #+end_quote

So instead of: #+begin_src haskell import Control.Monad.Fail ... class MonadFail m => MonadFile m ... -- use error instead of fail Nothing -> error ("Message " <> show x) -- if compatibility fith old GHCs needed (ex. library) #if GLASGOW_HASKELL < 880 import Prelude hiding (fail) import Control.Monad.Fail #endif #+end_src

*** Diversity in exceptions

Exception cause: external or internal.

Exceptions used by runtime system

#+begin_src haskell div 1 0 -- *** Exception: divide by zero #+end_src

Exceptions used by programmers:

  • Language feature
  • Programmable (implemented at library level)

*** Exception handling strategies

  • Ignore
  • Print
  • Repeat
  • Wait, stop, exit
  • Substitute with default
  • Throw
  • Handle
  • Rethrow
  • Emergency exit

*** Asynchronous exception

Exceptions raised as a result of an "external event", such as signal from another thread.

Are raised by =throwTo=. Are by termin and design should not be catched/handled, by default catching/handling functions are not catching them, if someone still wants to catch them - there are special function: =catchAsync=.

Further reading: termin and apparatus were introduced by [[https://www.microsoft.com/en-us/research/wp-content/uploads/2016/07/asynch-exns.pdf]["Asynchronous Exceptions in Haskell" (Simon Marlow, Simon Peyton Jones, Andrew Moran, John Reppy)]].

*** Monadic Error handling

#+begin_src haskell (>>=) :: m a -> (a -> m b) -> m b -- λA.E ∨ A - computes and drops if error value happens. catch :: c a -> (e -> c a) -> c a -- λE.E ∨ A - handles "errors" as "normal" values and stops when an "error" is finally handled. #+end_src

** Constraints

Very strong Haskell type system makes possible to work with code from the top down, an axiomatic semantics approach, from constraints into types.

  • Helps to form the type level code (aka join points of the code).
  • Uses the piling up of constraints/types information. At some point pick and satisfy constraints, can be done one at a time.
  • Provides hints through type level formulation for term level calculations, does not formulate the term level.
  • Tedious method (a lot of boilerplate and rewriting it) but pretty simple and relaxing.
  1. Set of constraints.

  2. When it is needed or convenient, single constraint gets a little more realistically concrete/abstracted.

Main type detail annotation thread can happen in =main= or special wrapper function, localization is inside functions.

  1. Rest of constraints set shifts to source type.

3.a. For the class handled or known how to handle - writte a base case instance description.

#+begin_src haskell instance (Monad m) => MonadReader r (ReaderT r m) #+end_src

3.b. For others write recursive instance descriptions:

All other unsolved constraints move into the source polymorphic variable.

#+begin_src haskell instance (MonadError e m) => MonadError e (ReaderT r m) instance (MonadState s m) => MonadState s (ReaderT r m) #+end_src

  1. Repeat from 1 until considered done.

  2. Code condensed into terse form.

=MonadError= constraints is =IOException=, not for the =String=. =IOException= vs =String=.

Reverse pluck =MonadReader= constraint with =runReader= on the object.

=MonadState= - =StateT=

** Monad transformers and their type classes

** Layering monad transformers

Different layering of the same monad transformers is functionality is the same, but the form is different. Surrounding handling functions would need to be different.

** Hoogle

*** Search

Text search (case insensitive):

  • =a=
  • =map=
  • =con map=

Type search:

  • =:: a=
  • =:: a -> a=

Text & type:

  • =id :: a -> a=

*** Scope

**** Default

Scope is [[http://hackage.haskell.org/platform][Haskell Platform]] (and [[http://haskell.org/haskellwiki/Keywords][Haskell keywords)]].

All [[http://hackage.haskell.org/][Hackage]] packages are available to search with:

**** Hierarchical module name system (from big letter):

  • =fold +Data.Map= finds results in the =Data.Map= module
  • =file -System= excludes results from modules such as =System.IO=, =System.FilePath.Windows= and =Distribution.System=

**** Packages (lower case):

  • =mode +platform=
  • =mode +cmdargs= (only)
  • =mode +platform +cmdargs=
  • =file -base= (Haskell Platform, excluding the "base" package)

** <<>>

ST is like a lexical scope, where all the variables/state disappear when the function returns https://wiki.haskell.ohttps://www.schoolofhaskell.com/school/to-infinity-and-beyond/older-but-still-interesting/deamortized-strg/Monad/ST https://dev.to/jvanbruegge/what-the-heck-is-polymorphism-nmh

*** /*/

<<>>

** <<>>

Allows to separate and preserve information about happened, ex. error handling.

*** /*/

<<>>

** <<>>

  1. Inverse function

  2. In logic: ( P \to Q \Rightarrow \neg P \to \neg Q ), & same for category duality.

  3. For operation: element that allows reversing operation, having an element that with the dual produces the identity element.

  4. See Inversion.

** <<>>

  1. Is a permutation where two elements are out of order.

  2. See Inverse

** <<>>

( f_{x \to y} \circ ({f_{x \to y}})^{-1} = {1}_{x} )

/*/ ( \iff ) function is bijective. Otherwise - partial inverse

** <<>> :drill: SCHT: <2020-11-12 Thu> :properties: :ID: 97593115-a31b-4016-8de4-9356b4a89991 :DRILL_LAST_INTERVAL: 248.4478 :DRILL_REPEATS_SINCE_FAIL: 6 :DRILL_TOTAL_REPEATS: 10 :DRILL_FAILURE_COUNT: 2 :DRILL_AVERAGE_QUALITY: 3.8 :DRILL_EASE: 2.72 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-03-09 Mon 12:57] 🔚

For ( f: x \to y ): ( \exists g \ : \ g \circ f = 1^{x} ) - ( g ) is left inverse of ( f ). ( \exists g \ : \ f \circ g = 1^{y} ) - ( g ) is right inverse of ( f ).

** <<>>

/*/ when function is now bijective. When bijective see inverse function.

** <<>> :properties: :ID: 5b29fb7d-11a2-4c8f-a993-39f97e5cc93d 🔚

Enables pattern synonym declaration, which always begins with the =pattern= word. Allows to abstract-away the structures of pattern matching.

*** /*/

<<>> <<>>

** <<>>

*** <<<-ddump-ds>>>

Dump desugarer output.

**** /*/

<<>> <<>>

** <<>>

*** <<<-foptimal-applicative-do>>>

( O(n^3) ) Always finds optimal reduction into <*> for ApplicativeDo do notation.

** <<>>

Taken from: https://ncatlab.org/nlab/show/computational+trinitarianism

Under the statements:

  • propositions as types

  • programs as proofs

  • relation between type theory and category theory

the following notions are equivalent:

== proposition proof (Logic)

== generalized element of an object (Category theory)

== typed program with output (Type theory & Computer science)

#+caption: Computational trinitarianism #+name: tab--computational-trinitarianism #+attr_latex: :mode table :environment tabu :width \linewidth :spread t :booktabs t :float sideways | [[https://ncatlab.org/nlab/show/logic][Logic]] | [[https://ncatlab.org/nlab/show/category+theory][Category theory]] | [[https://ncatlab.org/nlab/show/type+theory][Type theory]] | |-----------------------------------+-----------------------------------------------------------------+------------------------------------------------| | [[https://ncatlab.org/nlab/show/true][true]] | [[https://ncatlab.org/nlab/show/terminal+object][terminal object]]/[[https://ncatlab.org/nlab/show/%28-2%29-truncated+object][(-2)-truncated object]] | [[https://ncatlab.org/nlab/show/h-level+0][h-level 0]]-[[https://ncatlab.org/nlab/show/type][type]]/[[https://ncatlab.org/nlab/show/unit+type][unit type]] | | [[https://ncatlab.org/nlab/show/false][false]] | [[https://ncatlab.org/nlab/show/initial+object][initial object]] | [[https://ncatlab.org/nlab/show/empty+type][empty type]] | | [[https://ncatlab.org/nlab/show/proposition][proposition]] | [[https://ncatlab.org/nlab/show/%28-1%29-truncated+object][(-1)-truncated object]] | [[https://ncatlab.org/nlab/show/h-proposition][h-proposition]], [[https://ncatlab.org/nlab/show/mere+proposition][mere proposition]] | | [[https://ncatlab.org/nlab/show/proof][proof]] | [[https://ncatlab.org/nlab/show/generalized+element][generalized element]] | [[https://ncatlab.org/nlab/show/program][program]] | | [[https://ncatlab.org/nlab/show/cut+rule][cut rule]] | [[https://ncatlab.org/nlab/show/composition][composition]] of [[https://ncatlab.org/nlab/show/classifying+morphisms][classifying morphisms]] / [[https://ncatlab.org/nlab/show/pullback][pullback]] of [[https://ncatlab.org/nlab/show/display+maps][display maps]] | [[https://ncatlab.org/nlab/show/substitution][substitution]] | | [[https://ncatlab.org/nlab/show/cut+elimination][cut elimination]] for [[https://ncatlab.org/nlab/show/implication][implication]] | [[https://ncatlab.org/nlab/show/counit][counit]] for hom-tensor adjunction | [[https://ncatlab.org/nlab/show/beta+reduction][beta reduction]] | | introduction rule for [[https://ncatlab.org/nlab/show/implication][implication]] | [[https://ncatlab.org/nlab/show/unit][unit]] for hom-tensor adjunction | [[https://ncatlab.org/nlab/show/eta+conversion][eta conversion]] | | [[https://ncatlab.org/nlab/show/logical+conjunction][logical conjunction]] | [[https://ncatlab.org/nlab/show/product][product]] | [[https://ncatlab.org/nlab/show/product+type][product type]] | | [[https://ncatlab.org/nlab/show/disjunction][disjunction]] | [[https://ncatlab.org/nlab/show/coproduct][coproduct]] ([[https://ncatlab.org/nlab/show/%28-1%29-truncation][(-1)-truncation]] of) | [[https://ncatlab.org/nlab/show/sum+type][sum type]] ([[https://ncatlab.org/nlab/show/bracket+type][bracket type]] of) | | [[https://ncatlab.org/nlab/show/implication][implication]] | [[https://ncatlab.org/nlab/show/internal+hom][internal hom]] | [[https://ncatlab.org/nlab/show/function+type][function type]] | | [[https://ncatlab.org/nlab/show/negation][negation]] | [[https://ncatlab.org/nlab/show/internal+hom][internal hom]] into [[https://ncatlab.org/nlab/show/initial+object][initial object]] | [[https://ncatlab.org/nlab/show/function+type][function type]] into [[https://ncatlab.org/nlab/show/empty+type][empty type]] | | [[https://ncatlab.org/nlab/show/universal+quantification][universal quantification]] | [[https://ncatlab.org/nlab/show/dependent+product][dependent product]] | [[https://ncatlab.org/nlab/show/dependent+product+type][dependent product type]] | | [[https://ncatlab.org/nlab/show/existential+quantification][existential quantification]] | [[https://ncatlab.org/nlab/show/dependent+sum][dependent sum]] ([[https://ncatlab.org/nlab/show/%28-1%29-truncation][(-1)-truncation]] of) | [[https://ncatlab.org/nlab/show/dependent+sum+type][dependent sum type]] ([[https://ncatlab.org/nlab/show/bracket+type][bracket type]] of) | | [[https://ncatlab.org/nlab/show/equivalence][equivalence]] | [[https://ncatlab.org/nlab/show/path+space+object][path space object]] | [[https://ncatlab.org/nlab/show/identity+type][identity type]] | | [[https://ncatlab.org/nlab/show/equivalence+class][equivalence class]] | [[https://ncatlab.org/nlab/show/quotient][quotient]] | [[https://ncatlab.org/nlab/show/quotient+type][quotient type]] | | [[https://ncatlab.org/nlab/show/induction][induction]] | [[https://ncatlab.org/nlab/show/colimit][colimit]] | [[https://ncatlab.org/nlab/show/inductive+type][inductive type]], [[https://ncatlab.org/nlab/show/W-type][W-type]], [[https://ncatlab.org/nlab/show/M-type][M-type]] | | higher [[https://ncatlab.org/nlab/show/induction][induction]] | [[https://ncatlab.org/nlab/show/%28infinity%2C1%29-colimit][higher colimit]] | [[https://ncatlab.org/nlab/show/higher+inductive+type][higher inductive type]] | | [[https://ncatlab.org/nlab/show/completely+presented+set][completely presented set]] | [[https://ncatlab.org/nlab/show/discrete+object][discrete object]]/[[https://ncatlab.org/nlab/show/0-truncated+object][0-truncated object]] | [[https://ncatlab.org/nlab/show/h-level+2][h-level 2]]-[[https://ncatlab.org/nlab/show/type][type]]/[[https://ncatlab.org/nlab/show/preset][preset]]/[[https://ncatlab.org/nlab/show/h-set][h-set]] | | [[https://ncatlab.org/nlab/show/set][set]] | [[https://ncatlab.org/nlab/show/groupoid+object+in+an+%28infinity%2C1%29-category][internal 0-groupoid]] | [[https://ncatlab.org/nlab/show/Bishop+set][Bishop set]]/[[https://ncatlab.org/nlab/show/setoid][setoid]] | | [[https://ncatlab.org/nlab/show/universe][universe]] | [[https://ncatlab.org/nlab/show/object+classifier][object classifier]] | [[https://ncatlab.org/nlab/show/type+of+types][type of types]] | | [[https://ncatlab.org/nlab/show/modality][modality]] | [[https://ncatlab.org/nlab/show/closure+operator][closure operator]], ([[https://ncatlab.org/nlab/show/idempotent+monad][idemponent]]) [[https://ncatlab.org/nlab/show/monad][monad]] | [[https://ncatlab.org/nlab/show/modal+type+theory][modal type theory]], [[https://ncatlab.org/nlab/show/monad+%28in+computer+science%29][monad (in computer science)]] | | [[https://ncatlab.org/nlab/show/linear+logic][linear logic]] | ([[https://ncatlab.org/nlab/show/symmetric+monoidal+category][symmetric]], [[https://ncatlab.org/nlab/show/closed+monoidal+category][closed]]) [[https://ncatlab.org/nlab/show/monoidal+category][monoidal category]] | [[https://ncatlab.org/nlab/show/linear+type+theory][linear type theory]]/[[https://ncatlab.org/nlab/show/quantum+computation][quantum computation]] | | [[https://ncatlab.org/nlab/show/proof+net][proof net]] | [[https://ncatlab.org/nlab/show/string+diagram][string diagram]] | [[https://ncatlab.org/nlab/show/quantum+circuit][quantum circuit]] | | (absence of) [[https://ncatlab.org/nlab/show/contraction+rule][contraction rule]] | (absence of) [[https://ncatlab.org/nlab/show/diagonal][diagonal]] | [[https://ncatlab.org/nlab/show/no-cloning+theorem][no-cloning theorem]] | | | [[https://ncatlab.org/nlab/show/synthetic+mathematics][synthetic mathematics]] | [[https://ncatlab.org/nlab/show/domain+specific+embedded+programming+language][domain specific embedded programming language]] |

*** /*/ <<>>

** Techniques functional programming deals with the state

*** Minimizing

Do not rely on state, try not to change the state. Use it only when it is very necessary.

*** Concentrating

Concentrate the state in one place.

*** Deferring

Defer state to the last step of the program, or to external system.

** Functions

Total function uses domain fully, but takes only part of the codomain. Function allows to collapse domain values into codomain value. Meaning the function allows to loose the information. So total function is a computation that looses the information or into bigger codomains. That is why the function has a directionality, and inverse total process is partially possible.

Directionality and invertability are terms.

** <<>>

Emptiness.

Can not be grasped, touched.

A logically uninhabited data type.

(Since basis of logic is tautologically True and Void value can not be addressed - there is a logical paradox with the Void).

Is an object includded into the Hask category, since: #+begin_src haskell :t (id :: Void -> Void) (id :: Void -> Void) :: Void -> Void #+end_src

=id= for it exists.

Type system corresponds to constructive logic and not to the classical logic. Classical logic answers the question "Is this actually true". Constuctive (Intuitionistic) logic answers the question "Is this provable".

Also has functions: #+begin_src haskell -- Represents logical principle of explosion: from falsehood, anything follows. absurd :: Void -> a

-- If Functor holds only Void - it holds no values. vacuous :: Functor f => f Void -> f a

-- If Monad holds only Void - it holds no values. vacuousM :: Monad m => m Void -> m a #+end_src

Design pattern: use polymorphic data types and Void to get rid of possibilities when you need to.

*** /*/ <<>>, Haskell expressions can't return Void.

Also see: Maybe.

** Intuitionistic logic

Proposition considered =True= due to direct evidence of existence through constructive proof using Curry-Howard isomorphism.

// does not include classic logic fundamental axioms of the excluded middle and double negation elimination. Hense // is weaker then classical logic. Classical logic includes //, all theorems of // are also in classical logic.

*** /*/

<<>>

** <<>> :drill: SCHT: <2020-05-07 Thu> :PROPERTIES: :ID: 0ef25f89-1023-480a-8f5f-e075960d9385 :DRILL_LAST_INTERVAL: 10.764 :DRILL_REPEATS_SINCE_FAIL: 3 :DRILL_TOTAL_REPEATS: 2 :DRILL_FAILURE_COUNT: 0 :DRILL_AVERAGE_QUALITY: 4.5 :DRILL_EASE: 2.6 :DRILL_LAST_QUALITY: 4 :DRILL_LAST_REVIEWED: [2020-04-26 Sun 23:51] :END:

If asserted statement contains some error or contradiction - anything can be proven trough it. The more there is an error - the easier logic chain arrives at any target.

Ancient principle of logic. Both in classical & intuitionistic logic.

*** /*/

<<>> <<>> <<>> <<>> <<>> <<>> <<>> <<>>

** Universal property

A property of some construction which boils down to (is manifestly equivalent to) the property that an associated object is a universal initial object of some (auxiliary) category.

** Yoneda lemma

Allows the embedding of any category into a category of functors (contravariant set-valued functors) defined on that category. It also clarifies how the embedded category, of representable functors and their natural transformations, relates to the other objects in the larger functor category.

The Yoneda lemma suggests that instead of studying the (locally small) category C {\displaystyle {\mathcal {C}}} \mathcal{C} , one should study the category of all functors of C {\displaystyle {\mathcal {C}}} \mathcal{C} into S e t {\displaystyle \mathbf {Set} } \mathbf{Set} (the category of sets with functions as morphisms). S e t {\displaystyle \mathbf {Set} } \mathbf{Set} is a category we think we understand well, and a functor of C {\displaystyle {\mathcal {C}}} \mathcal{C} into S e t {\displaystyle \mathbf {Set} } \mathbf{Set} can be seen as a "representation" of C {\displaystyle {\mathcal {C}}} \mathcal{C} in terms of known structures. The original category C {\displaystyle {\mathcal {C}}} \mathcal{C} is contained in this functor category, but new objects appear in the functor category, which were absent and "hidden" in C {\displaystyle {\mathcal {C}}} \mathcal{C} . Treating these new objects just like the old ones often unifies and simplifies the theory.

** Monoidal category, functoriality of ADTs, Profunctors

Category equipped with tensor product. #+begin_src haskell <> #+end_src wich is a functor for /*/.

Set category can be monoidal under both product (having terminal object) or coproduct (having initial object) operations, if according operation exist for all objects.

Any one-object category is /*/.

( (a, ()) \sim a ) up to unique isomorphism, which is called Lax monoidal functor.

Product and coproduct are functorial, so, since: Algebraic data type construction can use:

  • Type constructor
  • Data constructor
  • Const functor
  • Identity functor
  • Product
  • Coproduct

Any algebraic data type is functorial.

** <<>>

Maps all objects of source category into one (fixed) object of target category, and all morphisms to identity morphism of that fixed object.

#+begin_src haskell instance Functor (Const c) where fmap :: (a -> b) -> Const c a -> Const c b fmap _ (Const c) = Const c #+end_src

In Category theory denoted: #+begin_src text Δ #+end_src

Last type parameter that bears the target type of lifted function (=b=) and is a proxy type.

Analogy: the container that allways has an object attached to it, and everything that is put inside - changes the container type accordingly, and dissapears.

** <<>>

#+begin_src haskell (->) a b = a -> b #+end_src Functorial in the last argument & called Reader functor.

#+begin_src haskell newtype Reader c a = Reader (c -> a)

fmap = ( . ) #+end_src

** Contravariant functor

#+begin_src haskell fmap :: (a -> b) -> Op c a -> Op c b (a -> c) -> (b -> c) #+end_src

\begin{tikzcd} a \arrow[r] \arrow[rd] & b \arrow[d, dashed] \ & c \end{tikzcd}

( (a \to b)^{C} = (a \leftarrow b)^{C^{op}} )

#+begin_src haskell class Contravariant f where contramap :: (b -> a) -> (f a -> f b) #+end_src

\begin{tikzcd} a \arrow[r] \arrow[rd] & b \arrow[d, "contravariant", dashed] \ & c \end{tikzcd}

If arrows does not commute Contravatiant funtor anyway allows to construct transformation between these such arrows to other arrow.

** Profunctor

#+begin_src haskell (->) a b #+end_src

( C^{op} \times C \to C )

It is called profunctor.

#+begin_src haskell dimap :: (a' -> a) -> (b -> b') -> p a b -> p a' b' #+end_src

So, profunctor in case of arrow:

\begin{tikzcd} a \arrow[dd, "h"] & & a' \arrow[ll, "f"] \arrow[dd, "profunctor", dashed] \ & & \ b \arrow[rr, "g"] & & b' \end{tikzcd}

#+begin_src haskell dimap :: (a' -> a) -> (b -> b') -> p a b -> p a' b' dimap :: f g -> (a -> b) -> (a' -> b') dimap :: f g -> h -> (a' -> b') dimap = g . h . f #+end_src

It is contravariant functor in the first argument, and covariant functor in the second argument.

#+begin_src haskell dimap id <==> fmap (flip dimap) id <==> contramap #+end_src

** Coerce

Operates under condition that source and target types have same representation. Same representation means they are type aliases, or it the compiler can infer that they have the same representation. Directly shares the values from the source type to the target type. Conversion is free, there is no run-time computations.

The function implementing the transition: #+begin_src haskell coerce :: Coercible a b => a -> b #+end_src

Type class implementing the instances for transitions: #+begin_src haskell class a ~R# b => Coercible (a :: k0) (b :: k0) #+end_src When compiler detects types have same structure, type class instances coerse implementation for this pairs of types. This type class does not have regular instances; instead they are created on-the-fly during type-checking. Trying to manually declare an instance of Coercible is an error.

*** /*/

Coercible

** Universal/Existential quantification

( \forall ) Universal quantifier - a general property exists. Global solution. ( \exists ) Existential quantifier - evidence means general property, a local solution.

( \forall ) and ( \exists ) are dualistic. Especially in Haskell universal type inside function structure has existential-like properties and backwards, existential type has universal-like properties inside function implementation.

Haskell RankNTypes option enables:

forall ... => - universal

If variable is universally quantified - the consumer of it can choose the type.

Because the consumer chooses the type the variable inside function body is quantified existentially.

=> ... forall - existential

If variable is existentially quantified - the type of it treated as it is already determined, and consumer can not reify it - consumer must accept and process the full existential type as it is.

Since the consumer is not involved into the choosing of the type - the variable inside function body quantified universally.

*** Use of existentials

Haskell existentials are always result in throwing aways type information.

Gives ability to work with data from at external world that we do not know definite type at compile time.

Some information about existentially quantified type should be preserved to be able to transrofm it.

Existential wrappers make possible from a function to return existentially quantified data. Wrapper allows to avoid unification with outer context and "escape" type variable.

There are three general degrees how much type information for existential to preserve:

  • (low) - use existential variable as is, the use in the code would place it's own constrants (like =[a]=) and so the abilities to do something with that type variables.
  • (medium) - povide type class constraints.
  • (high) - store existential in parameterized GADT, store type information in GADT constructors, do things and and then restore the type information on pattern match on main GADT constructor and get secondary type.

Additional reading: https://markkarpov.com/post/existential-quantification.html

** Propagator

Propagator is a monotone function between join-semilattices.

Where semilattices are amount of information about individual values. As information on input gained - the information on output only grows.

Join-semilattice is a idempotent commutative monoid.

If there is a system of nodes that each are join semilatice, and proparators are transformations that move information betwen them, and so transmit the information to all of them and bring the system into stable state. Number of times propagator with informaiton fired is not important - because it is idempotent. Order of propagators in the network firing is not important - it is commutative.

Under side-condition for termination (provenance) (information fullness/volume, network becoming stationatry or passing some check) - the network terminates and give a deterministic answer.

Provenance - a ad-hoc rules to determine the probability of recieving an close to trueth result from number of different approaches and informaiton sources. Also solves the contradictory data and raises the question of deciding between the contradictory world views: what is the least ... to get the most accurate estimates ....

** Code technics

Dependent types are used in teoretically complex code, in 1-2% of it. GADTs are fit 5-10% of the code.

Proving the easy targets & most needed ones allows much assurance and makes testing coverage more sufficcient.

Liquid Haskell are useful and its refinment types. [[https://www.youtube.com/watch?v=vYh27zz9530][Ideas presentation]].

There is relatively rough idea that codata should use laziness and data should use strictness, which is not really true because there is a lot of cases where being lazy on strict data allows to tramendeusly shorten the computation for data.

You want confluence regardless of totality.

Metaprogramming in Haskell is mainly done through Template Haskell wich is too hard and clunky to work with, due to hard syntax structure.

Unproven Collatz conjecture is a classical computation halting problem. (If x_{i} is even => x_{i+1} = 3x_{i}+1, if odd => x_{i+1} = x_{i}/2.

** Algorithm of the Hackage package release

*** Form Git{Hub,Lab} pre-release

Name it pre-x.x.x.x+1, so determination of real number happens afterwards.

*** Create git branch release x.x.x.x+1 *** Open-up git diff ..HEAD on one side of the screen *** Open CHANGELOG.md on the other side of the screen *** Walk through diff and populate CHANGELOG.md

CHANGELOG.md template:

#+begin_src markdown

Changelog

x.x.x.x ()

  • Major (breaking):

    • ...
  • Medium (extending API features)

    • ...
  • Minor:

    • ...

name uses PVP Versioning.

#+end_src

**** Populate according to PVP

***** Major breaking changes ***** (optional) API additions of functionality ***** (optional) Other changes in the project, news

*** Check cabal sdist build passes *** Think what new files can/should be included in .cabal extra-source-files *** Update .cabal version: *** Add a git tag *** git push --tags *** (optional) (Remove git tag)

#+begin_src fish set fork 'f' set ver '..' git tag -d $ver git push --delete $fork $ver #+end_src

*** Make a cabal sdist

*** Upload package candidate to Hackage

https://hackage.haskell.org/packages/candidates/upload

*** (careful) Be fully ready when you upload package release to Hackage, since upload is idempotant

http://hackage.haskell.org/packages/upload

*** (optional) If docs not posted on Hackage

Hackage packaging have internal specifics and can refulse to build docs, to generate docs locally and upload them:

**** (optional) Nix-shell #+begin_src shell nix-shell #+end_src

**** Upload docs #+begin_src shell set -e

dir=$(mktemp -d /tmp/dist-docs.XXXXXX) trap 'rm -r "$dir"' EXIT

assumes cabal 2.4 or later

cabal v2-haddock --builddir="$dir" --haddock-for-hackage --enable-doc

(pasting pass does not work) Enter by hand: account, password

cabal upload -d --publish $dir/*-docs.tar.gz #+end_src

** Is power set functor is a bifunctor

#+begin_src haskell bimap :: (a1 -> a2) -> (b1 -> b2) -> f a1 b1 -> f a2 b2 fmap :: (a -> b) -> f a -> f b fmap :: (a -> b) -> (Id -> Id) -> f a Id -> f b Id #+end_src ** IO

*** Base IO Data types :PROPERTIES: :ID: 67f238bf-c61b-4894-a859-21e8d95e26c2 :END:

**** IO a

#+begin_src haskell data IO a #+end_src

Main data type of the program run-time execution (IO).

All actions should be added to Main.main IO () to be executed.

**** FilePath

#+begin_src haskell type FilePath = String #+end_src

Contents & Show are OS dependent, hold enough data to debug.

**** Handle

#+begin_src haskell data Handle = FileHandle Filepath ... -- for files | DuplexHandle Filepath ... -- for streams #+end_src

Handle - a record used by Haskell runtime system to manage I/O external objects.

Essential properties:

  • Direction: In (readable), Out (writable) or both.
  • Status: open, semi-closed, closed. A good practice to close handlers with hClose, aslo garbage collector at some point most probaly would remove unused handlers.
  • Seekable: True | False.
  • Buffering type and always a buffer (even if buffer turned off - buffer is 0).
  • Position (there are exceptions)

**** HandlePosn

Position in the data object.

**** Standart handlers

  • stdin
  • stdout
  • stdin

For more info - learn this question in POSIX UNIX/Linux.

**** IOMode

#+begin_src haskell data IOMode -- manage = ReadMode -- input | WriteMode -- output | AppendMode -- output | ReadWriteMode -- input/output #+end_src

**** File locking

Implementations should enforce locking as far as possible.

Haskell uses multiple-reader | single-writer locking.

If handle is managing:

  • output to a file - no new handls can be allocated for that file.

  • input from a file - new non-output handls can be created.

**** Opening files

#+begin_src haskell withFile :: FilePath -> IOMode -> (Handle -> IO r) -> IO r #+end_src

Allows to load the file and run code for it.

#+begin_src haskell openFile :: FilePath -> IOMode -> IO Handle #+end_src

Directionality of these funciton are determined by IOMode.

**** hClose

#+begin_src haskell hClose :: Handle -> IO () #+end_src

Close the handle.

**** Special cases

#+begin_src haskell readFile :: FilePath -> IO String writeFile :: FilePath -> String -> IO () appendFile :: FilePath -> String -> IO () #+end_src

**** Handle operation

#+begin_src haskell hFileSize :: Handle -> IO Integer hIsEOF :: Handle -> IO Bool isEOF :: IO Bool -- works only on stdin hGetPosn :: Handle -> IO HandlePosn hSetPosn :: HandlePosn -> IO () #+end_src

**** BufferMode

#+begin_src haskell data BufferMode = NoBuffering -- buffering is disabled if possible. | LineBuffering -- line-buffering should be enabled if possible. | BlockBuffering (Maybe Int) -- block-buffering should be enabled if possible. -- Just - the size of the buffer, otherwise implementation-dependent. #+end_src

Styles of buffers supported:

  • Block-buffering: the write happens when buffer oveflows its size.
  • Line-buffering: the write happens when "\n" encountered.
  • No buffering: everything is passed-through immidiately.

Buffer also gets written when hflush is used or handle is closed.

One should not flush less frequently then specified. One can flush buffers more frequently.

The default buffering mode is implementation-dependent on the file system object which is attached to that handle. By default, physical files are block-buffered and terminals are line-buffered.

**** Buffering operation

#+begin_src haskell hSetBuffering :: Handle -> BufferMode -> IO () hGetBuffering :: Handle -> IO BufferMode hFlush :: Handle -> IO () #+end_src

*** Cabal Paths_pkgname

#+begin_src haskell version :: Version

getBinDir :: IO FilePath getLibDir :: IO FilePath getDynLibDir :: IO FilePath getDataDir :: IO FilePath getLibexecDir :: IO FilePath getSysconfDir :: IO FilePath #+end_src

Cabal automatically generated module.

ghci would not load the module, since it was not generated, use cabal v2-repl to load it.

** <<>>

Ways to pass arguments from function to function:

  • Eager/inside-out evaluation: most languages use argument transmission "by-value". At call time argument expression is evaluated and that value is passed into the function. In this case function can bind the value and change it frevolously - that would not create a mutation outside the funciton, since the function recieved the copy of the initial argument value - so funciton can mutate local value, but that would not mutate a value of the external argument.

  • Lazy (outside-in) evaluation - passing an argument by-name. Argument expressions don't evaluate at call time. Immutability allows to share the argument directly into the function. When on execution of the function body a reference to the parameter is encountered - a coresponding expressions begins evaluation, and since all expressions essentially create a pipeline of algorythm and share the names for identities - the backward pipeline pass from the target request to the initial data can be resolved step by step.

*** /*/ <<>>

** <<>>

Intuitively - fmap with effects.

Traversable represents traversable structures.

#+begin_src haskell class (Functor t, Foldable t) => Traversable t where {-# MINIMAL traverse | sequenceA #-}

-- | Map each element of a structure to an action, evaluate these actions -- from left to right, and collect the results. traverse :: Applicative f => (a -> f b) -> t a -> f (t b) traverse f = sequenceA . fmap f

-- | Evaluate each action in the structure from left to right, and -- collect the results. sequenceA :: Applicative f => t (f a) -> f (t a) sequenceA = traverse id #+end_src

** <<>>

A point in function where argument equals to the result.

( f(fix) = fix )

That means no metter how many times it recurses on itself the result is the same constant:

( f(f(f(...fix... = fix )

*** <<>>

Not all fixed points are attractive.

For function ( f ), =attractive fixed point= - is a fixed point ( x_0 ) for ( f ) such that for any value of ( x ) in the domain that is close enough to ( x_0 ), the recursive applition of ( f ) converges to ( x_0 ).

Attractive fixed points are the special case of a wider mathematical concept of attractors.

*** <<>>

The fixed point smallest by order.

  • There may be no smallest fixed point - that means there is no fixed points at all.

  • If any of fixed points exist - there can be the only one least fixed point, so it is always unique.

Fixed-point theorems mostly yield algorithms for the least fixed point. Least fixed points often have desirable properties that other fixed points do not have.

**** <<>>

Since Haskell does not allow infinite types, fixed point can not be expressed in the type signature, so the recoed type is used instead. A type is isomorphic to the recursively approaching the attactive fixed point process of the least fixed point #+begin_src haskell newtype Fix f = Fix { unFix :: f (Fix f) } #+end_src

**

You can imagine that a non-recursive function holds values of the previous iteration. ** <<<Conway's law>>>

Design on the organization constraints it to effectively produce the software systems that constrained in the same places.

Original wording (1964): #+begin_quote Any organization that designs a system (defined broadly) will produce a design whose structure is a copy of the organization's communication structure. #+end_quote

The software interface structure of a system will reflect the social organizational boundaries that produced it. Ex, if in development there is one person/team/department that is much harder to work/communicate with - with same functions in the software the API would be scarse and the most probably going through the one central point.

And the contrary - the ways of establishing rules and communications in the company - also would be reflected. Even if company has a tree structure - there is always inordinate and internal undercarpet and open games and communication in it, which mens software structure would have difficulties implementing as a tree structure, and branches would get short-curcuited frequently, where is real-life communication channel, turning the software structure from tree into a semilattice, which is much harder to modularise and decouple.

** <<>>

Generalization of algebra, when it is defined on the Category theory.

Transferring algebraic laws into morphisms eliminates quantification of elements from the axioms, and these algebraic laws may then be glued together in terms of a single functor ( F ), the signature.

  • Reference

** History *** <<>> :drill: :properties: :ID: bfe7e9bf-1683-433d-949f-0c4240226074 🔚

Well known event in Haskell history: https://github.com/quchen/articles/blob/master/applicative_monad.md.

Math justice was restored with a RETroactive CONtinuity. Invented in computer science term Applicative (lax monoidal functor) become a superclass of Monad.

& that is why:

  • =return = pure=
  • =ap = <*>=
  • =>> = *>=
  • =liftM = liftA = fmap=
  • =liftM* = liftA*=

Also, a side-kick - Alternative became a superclass of MonadPlus. Hense:

  • =mzero = empty=
  • =mplus = (<|>)=

Work of unification continues under: https://gitlab.haskell.org/ghc/ghc/wikis/proposal/monad-of-no-return

**** /*/

<<>> <<>>

*** <<<Haskell 98>>> :drill: :properties: :ID: 0a2763f7-dfa8-4b4f-8a0d-1a43bd765944 🔚

In 1998 first solid reference standartization of language was created. Main purpose is that implementors can be committed to rely and support Haskell 98 exactly as it is specified.

In 2002 "Haskell 98" had a minor revision. Next Haskell Report is "Haskell 2010".

**** <<>>

  1. \forall class constraint (C t1 .. tn): 1.1. type variables have occurances \le head 1.2. constructors+variables+repetitions < head 1.3. \not type functions (type func application can expand to arbitrary size)
  2. \forall functional dependencies, ⟨tvs⟩_left \to ⟨tvs⟩_right, of the class, every type variable in S(⟨tvs⟩_right) must appear in S(⟨tvs⟩_left), where S is the substitution mapping each type variable in the class declaration to the corresponding type in the instance head.

*** [[https://typeclasses.com/timeline]["Great moments in Haskell history"]] (by Type Classes) - History of Haskell

** Resources

*** [[https://github.com/Gabriel439/post-rfc/blob/master/sotu.md]["State of the Haskell ecosystem"]] (Gabriel Gonzalez & contributors)

Good per-direction information on state of Haskell ecosystem.

*** [[https://github.com/haskell-perf]["Haskell performance"]] tools, processes, comparisons, data, information, guides (community)

*** [[http://www.datahaskell.org/docs][data Haskell]] - (2017) annotated links to data science & machine learning libraries, overviews and benchmarks of libraries dataHaskell contributors

** Literature

  • "GHC User’s Guide Documentation" (GHC Team): [[https://downloads.haskell.org/~ghc/latest/docs/users_guide.pdf][PDF]]
  • "What I Wish I Knew When Learning Haskell" (Stephen Diehl & contributors): [[http://dev.stephendiehl.com/hask/tutorial.pdf][PDF]]
  • "Category Theory for Programmers" (Bartosz Milewski & contributors): [[https://s3.amazonaws.com/milewski-ctfp-pdf/category-theory-for-programmers.pdf][PDF]]
  • Nix manual: [[https://nixos.org/nix/manual/][HTML]]
  • Nixpkgs manual: [[https://nixos.org/nixpkgs/manual/][HTML]]
  • Nixpkgs Haskell lib: [[https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/haskell-modules/lib.nix][source on the GitHub]]

** <<>>

Version policy and dependency management.

#+downloaded: https://pvp.haskell.org/pvp-decision-tree.svg @ 2019-06-17 15:49:21 [[file:images/pvp-decision-tree_2019-06-17_15-49-21.svg]]

#+begin_src haskell -- Policy: +--------- big breakage of API, big migration -- | +------- breakage of API -- | | +----- non-breaking API additions -- | | | +--- changes that have no API changes version: 1.2.3.4 #+end_src

*** /*/

<<>>

  • Giving back

\textgreek{λειτ} <- \textgreek{λαός} /Laos/ the people \textgreek{ουργός} <- \textgreek{ἔργο} /ergon/ work \textgreek{λειτουργία} /leitourgia/ public work

Moral value of people developed from the community to give back, improving the community.

The life is beautiful. For all humans that make the life have more magic.

This study and work would not be possible without the community: tearchers, mathematicians, Haskellers, scientists, creators, contributors. These sides of people are fascinating.

Special accolades for the guys at Serokell. They were the force that got me inspired & gave resources to seriously learn Haskell and create this pocket guide.

HACK: line below resets the pagestyle. Reset allows proper LaTeX preview generation in Emacs. Line gets removed before the export and added afterwards

#+latex_header: \pagestyle{empty}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].