You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
<value>Used inasynchronous workflows to bind a name to the result of an asynchronouscomputation, or, in other computationexpressions, usedto bind a name toa result, which isofthe computationtype.</value>
4150
+
<value>Used in computationexpressionsto bind a name tothe resultofanother computationexpression.</value>
<value>Used toindicate a computation expression that, when evaluated, provides the result of thecontaining computation expression.</value>
4204
+
<value>Used toprovide avalue for the result of the containingcomputation expression, where that value itself comes from theresult another computation expression.</value>
<value>Used in query expressions to specify what fields or columns to extract. Note that this is a contextual keyword, which means that it is not actually a reserved word and it only acts like a keyword in appropriate context.</value>
@@ -4231,7 +4231,7 @@
4231
4231
<value>Used instead of let for values that require Dispose to be called to free resources.</value>
<value>Used instead of let! inasynchronous workflows and othercomputation expressions for values that require Dispose to be called to free resources.</value>
4234
+
<value>Used instead of let! in computation expressions for values that require Dispose to be called to free resources.</value>
Copy file name to clipboardExpand all lines: src/fsharp/FSComp.txt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1370,7 +1370,7 @@ keywordDescriptionInterface,"Used to declare and implement interfaces."
1370
1370
keywordDescriptionInternal,"Used to specify that a member is visible inside an assembly but not outside it."
1371
1371
keywordDescriptionLazy,"Used to specify a computation that is to be performed only when a result is needed."
1372
1372
keywordDescriptionLet,"Used to associate, or bind, a name to a value or function."
1373
-
keywordDescriptionLetBang,"Used inasynchronous workflows to bind a name to the result of an asynchronouscomputation, or, in other computationexpressions, usedto bind a name toa result, which isofthe computationtype."
1373
+
keywordDescriptionLetBang,"Used in computationexpressionsto bind a name tothe resultofanother computationexpression."
1374
1374
keywordDescriptionMatch,"Used to branch by comparing a value to a pattern."
1375
1375
keywordDescriptionMatchBang,"Used in computation expressions to pattern match directly over the result of another computation expression."
1376
1376
keywordDescriptionMember,"Used to declare a property or method in an object type."
@@ -1387,8 +1387,8 @@ keywordDescriptionOverride,"Used to implement a version of an abstract or virtua
1387
1387
keywordDescriptionPrivate,"Restricts access to a member to code in the same type or module."
1388
1388
keywordDescriptionPublic,"Allows access to a member from outside the type."
1389
1389
keywordDescriptionRec,"Used to indicate that a function is recursive."
1390
-
keywordDescriptionReturn,"Used toindicate a valueto provide asthe result ofa computation expression."
1391
-
keywordDescriptionReturnBang,"Used toindicate a computation expression that, when evaluated, provides the result of thecontaining computation expression."
1390
+
keywordDescriptionReturn,"Used toprovide a valueforthe result ofthe containing computation expression."
1391
+
keywordDescriptionReturnBang,"Used toprovide avalue for the result of the containingcomputation expression, where that value itself comes from theresult another computation expression."
1392
1392
keywordDescriptionSelect,"Used in query expressions to specify what fields or columns to extract. Note that this is a contextual keyword, which means that it is not actually a reserved word and it only acts like a keyword in appropriate context."
1393
1393
keywordDescriptionStatic,"Used to indicate a method or property that can be called without an instance of a type, or a value member that is shared among all instances of a type."
1394
1394
keywordDescriptionStruct,"Used to declare a structure type. Also used in generic parameter constraints. Used for OCaml compatibility in module definitions."
@@ -1398,7 +1398,7 @@ keywordDescriptionTry,"Used to introduce a block of code that might generate an
1398
1398
keywordDescriptionType,"Used to declare a class, record, structure, discriminated union, enumeration type, unit of measure, or type abbreviation."
1399
1399
keywordDescriptionUpcast,"Used to convert to a type that is higher in the inheritance chain."
1400
1400
keywordDescriptionUse,"Used instead of let for values that require Dispose to be called to free resources."
1401
-
keywordDescriptionUseBang,"Used instead of let! inasynchronous workflows and othercomputation expressions for values that require Dispose to be called to free resources."
1401
+
keywordDescriptionUseBang,"Used instead of let! in computation expressions for values that require Dispose to be called to free resources."
1402
1402
keywordDescriptionVal,"Used in a signature to indicate a value, or in a type to declare a member, in limited situations."
1403
1403
keywordDescriptionVoid,"Indicates the .NET void type. Used when interoperating with other .NET languages."
1404
1404
keywordDescriptionWhen,"Used for Boolean conditions (when guards) on pattern matches and to introduce a constraint clause for a generic type parameter."