fact
stringlengths
3
3.37k
type
stringclasses
3 values
library
stringclasses
3 values
imports
listlengths
0
65
filename
stringlengths
31
124
symbolic_name
stringlengths
1
66
docstring
stringclasses
1 value
ExprSimplifier() : RASTBottomUpReplacer
function
Source
[ "Std", "RAST", "DAST.Format", "Std.Wrappers" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-expression-optimization.dfy
ExprSimplifier
apply(root: Path) : Mod -> Mod
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
apply
applyPrefix(mod: Mod, SelfPath: Path) : Mod
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
applyPrefix
UniqueElementOf(s: set<T>) : (r: T)
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
UniqueElementOf
Add(k: string, path: Path) : Mapping
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
Add
ToFinalReplacement(SelfPath: Path) : FinalReplacement
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
ToFinalReplacement
ToUseStatements(finalReplacement: FinalReplacement, SelfPath: Path) : seq<ModDecl>
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
ToUseStatements
PathsVisitor() : RASTTopDownVisitor<Mapping>
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
PathsVisitor
PathSimplifier(ghost mParent: Mod, replacement: FinalReplacement) : RASTBottomUpReplacer
function
Source
[ "RAST", "FactorPathsOptimization", "Std.Wrappers", "Std", "RAST" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-path-simplification.dfy
PathSimplifier
DafnyEscape(s: string) : string
function
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
DafnyEscape
DafnyUnescape(s: string) : string
function
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
DafnyUnescape
ReverseReplaceDots(i: string) : string
function
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
ReverseReplaceDots
ReverseIdiomaticRust(s: string) : string
function
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
ReverseIdiomaticRust
UnescapeIdent(s: string) : string
function
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
UnescapeIdent
AboutGatherSimpleQuotes(docstring: string, acc: string) ensures var r := GatherSimpleQuotes(docstring, acc); && |acc| <= |r| && |r[|acc|..]| <= |docstring| && r == acc + docstring[..|r[|acc|..]|] && (forall i | |acc| <= i < |r| :: r[i] == '`') && (|docstring| > |r[|acc|..]| ==> docstring[|r[|acc|..]|] != '`')
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
AboutGatherSimpleQuotes
IsDafnyIdImpliesDafnyIdTail(s: string) requires IsDafnyId(s) ensures IsDafnyIdTail(s)
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
IsDafnyIdImpliesDafnyIdTail
DafnyEscapeBijective(s: string) ensures DafnyUnescape(DafnyEscape(s)) == s
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
DafnyEscapeBijective
DafnyEscapeCharacteristic(s: string) requires IsDafnyIdTail(s) ensures IsDafnyEncodedIdTail(DafnyEscape(s))
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
DafnyEscapeCharacteristic
DafnyEscapeCorrect(s: string) requires IsDafnyIdTail(s) ensures IsDafnyEncodedIdTail(DafnyEscape(s)) && (IsDafnyId(s) && |s| > 0 ==> DafnyEscape(s)[0] in "aqkhd")
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
DafnyEscapeCorrect
ReplaceDotsNotInvertible() ensures replaceDots("_d") == replaceDots(".") ensures !IsDafnyEncodedIdTail("_d")
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
ReplaceDotsNotInvertible
ReplaceDotsInvertible(i: string) requires IsDafnyEncodedIdTail(i) ensures ReverseReplaceDots(replaceDots(i)) == i
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
ReplaceDotsInvertible
BetterTupleBuilderNameNotRsharp(i: string) ensures is_tuple_builder(i) ==> var s := better_tuple_builder_name(i); s[0..2] != "r#"
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
BetterTupleBuilderNameNotRsharp
IdiomaticRustNotRsharp(i: string) ensures !has_special(i) ==> |idiomatic_rust(i)| < 1 || idiomatic_rust(i)[0] != '#'
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
IdiomaticRustNotRsharp
EscapeIdentExamples() ensures escapeIdent("i") == "i" // Loop variable ensures escapeIdent("_1") == "_1" // tuple deconstructor ensures escapeIdent("_m") == "_m" // any hidden variable ensures escapeIdent("___hMake1") == "_T1" // tuple deconstructor ensures escapeIdent("h__w") == "h_w" // only letters and underscore en...
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
EscapeIdentExamples
TupleIdentInvertible(i: string) requires is_tuple_numeric(i) ensures UnescapeIdent(escapeIdent(i)) == i
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
TupleIdentInvertible
EscapeIdentInvertible(i: string) requires is_tuple_numeric(i) // _0 _1 ... => _0, _1 ... || is_tuple_builder(i) // ___hMake0, ____hMake1 ... => _T0, _T1 ... || i in reserved_rust // fn, impl, mod ... => r#fn, r#impl, r#mod... || IsDafnyEncodedId(i) // i => i // create_struct => create_struct // c#ons.tant?' => r#_c_hon...
lemma
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
EscapeIdentInvertible
IsDafnyId(s: string)
predicate
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
IsDafnyId
IsDafnyIdTail(s: string)
predicate
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
IsDafnyIdTail
IsDafnyEncodedIdTail(i: string)
predicate
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
IsDafnyEncodedIdTail
IsDafnyEncodedId(i: string)
predicate
Source
[ "RAST", "DafnyToRustCompiler", "DafnyToRustCompilerDefinitions" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-proofs.dfy
IsDafnyEncodedId
VisitMod(acc: T, mod: Mod, SelfPath: Path) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitMod
VisitTypeParams(acc: T, typeParams: seq<TypeParamDecl>) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitTypeParams
VisitFields(acc: T, fields: Fields) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitFields
VisitModMapping(acc: T, modDecl: ModDecl, SelfPath: Path) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitModMapping
VisitStructMapping(acc: T, struct: Struct) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitStructMapping
VisitTraitDecl(acc: T, tr: Trait) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitTraitDecl
VisitTopFn(acc: T, t: TopFnDecl) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitTopFn
VisitUse(acc: T, u: Use) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitUse
VisitType(acc: T, tpe: Type) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitType
VisitImplMapping(acc: T, impl: Impl) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitImplMapping
VisitBody(acc: T, members: seq<ImplMember>) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitBody
VisitMember(acc: T, member: ImplMember) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitMember
VisitFn(acc: T, fn: Fn) : T
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
VisitFn
ReplaceMod(mod: Mod, SelfPath: Path) : Mod
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceMod
ReplaceModDecl(modDecl: ModDecl, SelfPath: Path) : ModDecl
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceModDecl
ReplaceStruct(struct: Struct) : Struct
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceStruct
ReplaceTypeDecl(t: TypeSynonym) : TypeSynonym
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceTypeDecl
ReplaceConst(t: Constant) : Constant
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceConst
ReplaceEnum(enum: Enum) : Enum
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceEnum
ReplaceEnumCase(enumCase: EnumCase) : EnumCase
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceEnumCase
ReplaceImplDecl(impl: Impl) : Impl
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceImplDecl
ReplaceTrait(tr: Trait) : Trait
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceTrait
ReplaceTopFn(t: TopFnDecl) : TopFnDecl
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceTopFn
ReplaceFn(t: Fn) : Fn
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceFn
ReplaceUse(use: Use) : Use
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceUse
ReplaceBody(decls: seq<ImplMember>) : seq<ImplMember>
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceBody
ReplaceImplMember(t: ImplMember) : ImplMember
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceImplMember
ReplaceExpr(e: Expr) : Expr
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceExpr
ReplaceTypeParams(typeParams: seq<TypeParamDecl>) : seq<TypeParamDecl>
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceTypeParams
ReplaceType(t: Type) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceType
ReplaceFields(fields: Fields) : Fields
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ReplaceFields
GatherSimpleQuotes(docstring: string, acc: string := "") : (r: string)
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
GatherSimpleQuotes
ConvertDocstring(dafnyDocstring: string, ind: string, newlineStarted: bool := true, codeMarker: Option<string> := None) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ConvertDocstring
ToDocstringPrefix(docString: string, ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToDocstringPrefix
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
SeqToString(s: seq<T>, f: T --> string, separator: string := "") : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
SeqToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
Name(name: string) : Attribute
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
Name
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToStringMultiple(attributes: seq<Attribute>, ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToStringMultiple
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToNamelessField() : NamelessField
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToNamelessField
ToNamelessFields() : Fields
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToNamelessFields
ToString(ind: string, newLine: bool) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string, newLine: bool) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ToStringMultiple(typeParams: seq<TypeParamDecl>, ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToStringMultiple
AddConstraintsMultiple(typeParams: seq<TypeParamDecl>, constraints: seq<TypeParamConstraint>) : seq<TypeParamDecl>
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
AddConstraintsMultiple
AddConstraints(constraints: seq<TypeParamConstraint>) : TypeParamDecl
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
AddConstraints
ToString(ind: string) : string
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToString
ObjectType(underlying: Type) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ObjectType
PtrType(underlying: Type) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
PtrType
RefCell(underlying: Type) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
RefCell
Vec(underlying: Type) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
Vec
NewVec(elements: seq<Expr>) : Expr
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
NewVec
Borrow(underlying: Expr) : Expr
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
Borrow
BorrowMut(underlying: Expr) : Expr
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
BorrowMut
RawType(content: string) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
RawType
Box(content: Type) : Type
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
Box
BoxNew(content: Expr) : Expr
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
BoxNew
ToDowncast() : Path
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
ToDowncast
MSel(name: string) : Path
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
MSel
MSels(names: seq<string>) : Path
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
MSels
FSel(name: string) : Expr
function
Source
[ "Std.Wrappers", "Std", "DAST.Format", "Strings" ]
Source/DafnyCore/Backends/Rust/Dafny-compiler-rust-rast.dfy
FSel