According to Wikipedias article about substructural type-systems, F* support some kind of linear types. Is this true? If so, how? I can't find any information about it in the F* tutorial.
1
There are 1 best solutions below
Related Questions in LINEAR-TYPES
- How to move an opaque value like a hot potato from one Enum constructor to the next to the next?
- In JVM, is 0-overhead type coercion/downcasting a possibility?
- What does the pound sign mean in Idris 2?
- Destructuring result of applying a linear function
- Unwrapping an Optional Resource in a post-condition
- How to properly create a HashMap from linear-base (Data.HashMap.Mutable.Linear) in Haskell?
- Why does the type signature of linear array change compared to normal array?
- Why doesn't GHC recognize the function as linear?
- Lowering of higher order function with linear types
- Why does Haskell 9.0 not have Zero in its linear types, but Idris 2 does?
- Linear types let binding workaround for recursive function
- Idris interpreting nonlinear argument as linear
- Can the idea of Affine (relaxed Linear) Types be implemented in an untyped setting to enable safe mutations?
- Does F* support linear types?
- How should you perform simple read-only string operations against linear-typed strings?
Related Questions in FSTAR
- Can't compile Hello World in F*
- How can I display the value and/or type of an fstar expression?
- What language has equational rewrite?
- Why isn't this FStar function accepted?
- FStar function strange behavior
- Trouble verifying simple programs in F* (FStar)
- Trying to understand indexed types
- Unknown assertion failed in FStar
- Hint on FStar proof dead end
- Issue with a simple assertion in FStar
- This lemma slows down FStar/Emacs
- How to resolve this type conflict in FStar?
- Lemmas / proofs about subtyping judgments
- Mutually Inductive Datatypes with Type Parameters
- How to check equality of two FStar.Set's
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Earlier versions of F* had affine types (closely related to linear types), as described in this paper from 2011: https://www.microsoft.com/en-us/research/publication/secure-distributed-programming-with-value-dependent-types/
However, versions of F* since 2015 dropped affine types in favor of other constructs, notably monadic effects, to model stateful resources.