"existential type" meaning in All languages combined

See existential type on Wiktionary

Noun [English]

Forms: existential types [plural]
Head templates: {{en-noun}} existential type (plural existential types)
  1. (programming, type systems) A type that hides the underlying concrete type(s). Categories (topical): Programming Synonyms: existential
    Sense id: en-existential_type-en-noun-Q4UGcc9t Categories (other): English entries with incorrect language header, Pages with 1 entry, Pages with entries Disambiguation of English entries with incorrect language header: 67 33 Disambiguation of Pages with 1 entry: 78 22 Disambiguation of Pages with entries: 83 17 Topics: computing, engineering, mathematics, natural-sciences, physical-sciences, programming, sciences
  2. Used other than figuratively or idiomatically: see existential, type.
    Sense id: en-existential_type-en-noun-S7Hgj~mn

Inflected forms

Alternative forms

{
  "forms": [
    {
      "form": "existential types",
      "tags": [
        "plural"
      ]
    }
  ],
  "head_templates": [
    {
      "args": {},
      "expansion": "existential type (plural existential types)",
      "name": "en-noun"
    }
  ],
  "lang": "English",
  "lang_code": "en",
  "pos": "noun",
  "senses": [
    {
      "categories": [
        {
          "kind": "topical",
          "langcode": "en",
          "name": "Programming",
          "orig": "en:Programming",
          "parents": [
            "Computing",
            "Software engineering",
            "Technology",
            "Computer science",
            "Engineering",
            "Software",
            "All topics",
            "Sciences",
            "Applied sciences",
            "Media",
            "Fundamental",
            "Communication"
          ],
          "source": "w"
        },
        {
          "_dis": "67 33",
          "kind": "other",
          "name": "English entries with incorrect language header",
          "parents": [
            "Entries with incorrect language header",
            "Entry maintenance"
          ],
          "source": "w+disamb"
        },
        {
          "_dis": "78 22",
          "kind": "other",
          "name": "Pages with 1 entry",
          "parents": [],
          "source": "w+disamb"
        },
        {
          "_dis": "83 17",
          "kind": "other",
          "name": "Pages with entries",
          "parents": [],
          "source": "w+disamb"
        }
      ],
      "examples": [
        {
          "ref": "2002, Benjamin C. Pierce, Types and Programming Languages, MIT Press, →ISBN, page 363:",
          "text": "Existential types are fundamentally no more complicated than universal types (in fact, we will see in §24.3 that existentials can straightforwardly be encoded in terms of universals).",
          "type": "quote"
        },
        {
          "ref": "2021, Dean Wampler, chapter 16, in Programming Scala, 3rd edition, O'Reilly, →ISBN:",
          "text": "Scala 2 supported existential types, a way of abstracting over types. They let you assert that some type exists without specifying exactly what it is, usually because you don't know what it is and you don't need to know it in the current context.",
          "type": "quote"
        },
        {
          "ref": "2021, Jon Gjengset, Rust for Rustaceans, No Starch Press, →ISBN, page 34:",
          "text": "This behavior is what gives existential types their name: we are asserting that there exists some concrete type that matches the signature, and we leave it up to the compiler to find what that type is.",
          "type": "quote"
        }
      ],
      "glosses": [
        "A type that hides the underlying concrete type(s)."
      ],
      "id": "en-existential_type-en-noun-Q4UGcc9t",
      "links": [
        [
          "programming",
          "programming#Noun"
        ],
        [
          "type system",
          "type system"
        ],
        [
          "type",
          "type"
        ],
        [
          "concrete",
          "concrete"
        ]
      ],
      "qualifier": "type systems",
      "raw_glosses": [
        "(programming, type systems) A type that hides the underlying concrete type(s)."
      ],
      "synonyms": [
        {
          "word": "existential"
        }
      ],
      "topics": [
        "computing",
        "engineering",
        "mathematics",
        "natural-sciences",
        "physical-sciences",
        "programming",
        "sciences"
      ]
    },
    {
      "categories": [],
      "examples": [
        {
          "ref": "2001, John F. Schumaker, The Age of Insanity: Modernity and Mental Health, Greenwood Publishing Group, →ISBN, →LCCN, →OCLC, page 122:",
          "text": "This is an existential type of anxiety that stems from the feeling that we are not at home in this world.",
          "type": "quote"
        },
        {
          "ref": "2007 November 26, Paul Ferrara, Flash of Eden, AuthorHouse, →ISBN, →LCCN, →OCLC, page 120:",
          "text": "He was an existential type dude with no belongings to speak of. He didn't care about tomorrow; he lived in the moment. He was always reading a book; quiet yet explosive.",
          "type": "quote"
        }
      ],
      "glosses": [
        "Used other than figuratively or idiomatically: see existential, type."
      ],
      "id": "en-existential_type-en-noun-S7Hgj~mn",
      "links": [
        [
          "existential",
          "existential#English"
        ],
        [
          "type",
          "type#English"
        ]
      ]
    }
  ],
  "word": "existential type"
}
{
  "categories": [
    "English countable nouns",
    "English entries with incorrect language header",
    "English lemmas",
    "English multiword terms",
    "English nouns",
    "Pages with 1 entry",
    "Pages with entries"
  ],
  "forms": [
    {
      "form": "existential types",
      "tags": [
        "plural"
      ]
    }
  ],
  "head_templates": [
    {
      "args": {},
      "expansion": "existential type (plural existential types)",
      "name": "en-noun"
    }
  ],
  "lang": "English",
  "lang_code": "en",
  "pos": "noun",
  "senses": [
    {
      "categories": [
        "English terms with quotations",
        "en:Programming"
      ],
      "examples": [
        {
          "ref": "2002, Benjamin C. Pierce, Types and Programming Languages, MIT Press, →ISBN, page 363:",
          "text": "Existential types are fundamentally no more complicated than universal types (in fact, we will see in §24.3 that existentials can straightforwardly be encoded in terms of universals).",
          "type": "quote"
        },
        {
          "ref": "2021, Dean Wampler, chapter 16, in Programming Scala, 3rd edition, O'Reilly, →ISBN:",
          "text": "Scala 2 supported existential types, a way of abstracting over types. They let you assert that some type exists without specifying exactly what it is, usually because you don't know what it is and you don't need to know it in the current context.",
          "type": "quote"
        },
        {
          "ref": "2021, Jon Gjengset, Rust for Rustaceans, No Starch Press, →ISBN, page 34:",
          "text": "This behavior is what gives existential types their name: we are asserting that there exists some concrete type that matches the signature, and we leave it up to the compiler to find what that type is.",
          "type": "quote"
        }
      ],
      "glosses": [
        "A type that hides the underlying concrete type(s)."
      ],
      "links": [
        [
          "programming",
          "programming#Noun"
        ],
        [
          "type system",
          "type system"
        ],
        [
          "type",
          "type"
        ],
        [
          "concrete",
          "concrete"
        ]
      ],
      "qualifier": "type systems",
      "raw_glosses": [
        "(programming, type systems) A type that hides the underlying concrete type(s)."
      ],
      "synonyms": [
        {
          "word": "existential"
        }
      ],
      "topics": [
        "computing",
        "engineering",
        "mathematics",
        "natural-sciences",
        "physical-sciences",
        "programming",
        "sciences"
      ]
    },
    {
      "categories": [
        "English terms with quotations"
      ],
      "examples": [
        {
          "ref": "2001, John F. Schumaker, The Age of Insanity: Modernity and Mental Health, Greenwood Publishing Group, →ISBN, →LCCN, →OCLC, page 122:",
          "text": "This is an existential type of anxiety that stems from the feeling that we are not at home in this world.",
          "type": "quote"
        },
        {
          "ref": "2007 November 26, Paul Ferrara, Flash of Eden, AuthorHouse, →ISBN, →LCCN, →OCLC, page 120:",
          "text": "He was an existential type dude with no belongings to speak of. He didn't care about tomorrow; he lived in the moment. He was always reading a book; quiet yet explosive.",
          "type": "quote"
        }
      ],
      "glosses": [
        "Used other than figuratively or idiomatically: see existential, type."
      ],
      "links": [
        [
          "existential",
          "existential#English"
        ],
        [
          "type",
          "type#English"
        ]
      ]
    }
  ],
  "word": "existential type"
}

Download raw JSONL data for existential type meaning in All languages combined (2.8kB)


This page is a part of the kaikki.org machine-readable All languages combined dictionary. This dictionary is based on structured data extracted on 2024-12-21 from the enwiktionary dump dated 2024-12-04 using wiktextract (d8cb2f3 and 4e554ae). The data shown on this site has been post-processed and various details (e.g., extra categories) removed, some information disambiguated, and additional data merged from other sources. See the raw data download page for the unprocessed wiktextract data.

If you use this data in academic research, please cite Tatu Ylonen: Wiktextract: Wiktionary as Machine-Readable Structured Data, Proceedings of the 13th Conference on Language Resources and Evaluation (LREC), pp. 1317-1325, Marseille, 20-25 June 2022. Linking to the relevant page(s) under https://kaikki.org would also be greatly appreciated.