diff --git a/src/posts/oboOntologyGraph/post.ipynb b/src/posts/oboOntologyGraph/post.ipynb new file mode 100644 index 0000000..d581afe --- /dev/null +++ b/src/posts/oboOntologyGraph/post.ipynb @@ -0,0 +1,1700 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Creating graphs from OBO ontologies\n", + "\n", + "The OBO (Open Biomedical Ontologies) flat file format is a way of representing knowledge that is both easily readable for humans and easily parsable for machines. Yet, imagining all the relations between different terms is very difficult, especially for larger ontologies. Also, the automated investigation of terms and their relations is quite difficult on a list basis. \n", + "Therefore, a library that transforms the content of OBO files into the structure of a graph is useful since it allows for easy inspection of single terms and the connections they have to other terms as well as great visualization.\n", + "\n", + "Here, we introduce OBO.NET.Graph, a library that takes the OBO.NET parser and creates a graph from its terms list using the Graphoscope library.\n", + "\n", + "First, we reference the library:" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
Installed Packages
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#r \"nuget: OBO.NET.Graph, 0.5.0-alpha.0\"\n", + "\n", + "open OBO.NET\n", + "open OBO.NET.Graph" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Once this has been done, we parse the OBO file of our choice (here, we use the famous Gene Ontology that we download from the web):" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
Installed Packages
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#r \"nuget: FSharp.Data\"\n", + "\n", + "let goContent = FSharp.Data.Http.RequestString(@\"http://current.geneontology.org/ontology/go.obo\").Split('\\n')\n", + "\n", + "let goOboOntology = OboOntology.fromLines false goContent" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that we have the whole ontology as an `OboOntology` object, we want to transform it into an FGraph:" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "let goOntologyGraph = ontologyToFGraph true goOboOntology" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's see what we can do with that...\n", + "\n", + "We want to investigate one of the terms in the ontology:\n", + "\n", + "```yaml\n", + "[Term]\n", + "id: GO:0000001\n", + "name: mitochondrion inheritance\n", + "namespace: biological_process\n", + "def: \"The distribution of mitochondria, including the mitochondrial genome, into daughter cells after mitosis or meiosis, mediated by interactions between mitochondria and the cytoskeleton.\" [GOC:mcc, PMID:10873824, PMID:11389764]\n", + "synonym: \"mitochondrial inheritance\" EXACT []\n", + "is_a: GO:0048308 ! organelle inheritance\n", + "is_a: GO:0048311 ! mitochondrion distribution\n", + "```\n", + "\n", + "There are 2 *is_a*s that this term points to. Let's get them from the ontology graph, using Graphoscope:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
[ { Id = "GO:0048308"\n", + " Name = "organelle inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The partitioning of organelles between daughter cells at cell division." [GOC:jid]"\n", + " Comment = ""\n", + " Subsets = ["goslim_pir"; "goslim_yeast"]\n", + " Synonyms = []\n", + " Xrefs = []\n", + " IsA = ["GO:0006996"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = []\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" }, { Id = "GO:0048311"\n", + " Name = "mitochondrion distribution"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""Any process that establishes the spatial arrangement of mitochondria between and within cells." [GOC:jid]"\n", + " Comment = ""\n", + " Subsets = []\n", + " Synonyms =\n", + " [{ Text = ""distribution of mitochondria""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }; { Text = ""mitochondrial distribution""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }; { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] }]\n", + " Xrefs = []\n", + " IsA = ["GO:0007005"; "GO:0051646"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = []\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" } ]
f
Microsoft.FSharp.Collections.SeqModule+revamp@728[System.Tuple`2[System.String,System.String],OBO.NET.OboTerm]
f
Microsoft.FSharp.Collections.SeqModule+Map@748-1[System.Tuple`2[System.String,System.String],OBO.NET.OboTerm]
mapping
FSI_0025+isATerms@7-3
ie
[ (GO:0048308, is_a), (GO:0048311, is_a) ]
CheckClose
False
LastGenerated
<null>
s
keyvalue
GO:0048308
is_a
GO:0048311
is_a
enum
<null>
pc
0
current
<null>
(values)
indexvalue
0
(GO:0048308, is_a)
Item1
GO:0048308
Item2
is_a
1
(GO:0048311, is_a)
Item1
GO:0048311
Item2
is_a
(values)
indexvalue
0
{ Id = "GO:0048308"\\n Name = "organelle inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The partitioning of organelles between daughter cells at cell division." [GOC:jid]"\\n Comment = ""\\n Subsets = ["goslim_pir"; "goslim_yeast"]\\n Synonyms = []\\n Xrefs = []\\n IsA = ["...
Id
GO:0048308
Name
organelle inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The partitioning of organelles between daughter cells at cell division." [GOC:jid]
Comment
Subsets
[ goslim_pir, goslim_yeast ]
HeadOrDefault
goslim_pir
TailOrNull
[ goslim_yeast ]
HeadOrDefault
goslim_yeast
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
goslim_yeast
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ goslim_yeast ]
Head
goslim_pir
Tail
[ goslim_yeast ]
HeadOrDefault
goslim_yeast
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
goslim_yeast
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ goslim_yeast ]
(values)
[ goslim_pir, goslim_yeast ]
Synonyms
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0006996 ]
HeadOrDefault
GO:0006996
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0006996
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0006996 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
BuiltIn
False
CreatedBy
CreationDate
1
{ Id = "GO:0048311"\\n Name = "mitochondrion distribution"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""Any process that establishes the spatial arrangement of mitochondria between and within cells." [GOC:jid]"\\n Comment = ""\\n Subsets = []\\n Synonyms =\\n [{ Text = ""distribution...
Id
GO:0048311
Name
mitochondrion distribution
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"Any process that establishes the spatial arrangement of mitochondria between and within cells." [GOC:jid]
Comment
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ { Text = ""distribution of mitochondria""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }, { Text = ""mitochondrial distribution""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }, { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""distribution of mitochondria""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"distribution of mitochondria"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
TailOrNull
[ { Text = ""mitochondrial distribution""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }, { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
TailOrNull
[ { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
Head
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Tail
[ { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
(values)
indexvalue
0
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
1
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text
"positioning of mitochondria"
Scope
Related
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""distribution of mitochondria""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"distribution of mitochondria"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Tail
[ { Text = ""mitochondrial distribution""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }, { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
TailOrNull
[ { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
Head
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Tail
[ { Text = ""positioning of mitochondria""\n", + " Scope = Related\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text\"positioning of mitochondria\"
ScopeRelated
TypeName
DBXrefs[ ]
(values)
indexvalue
0
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
1
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text
"positioning of mitochondria"
Scope
Related
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""distribution of mitochondria""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"distribution of mitochondria"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
1
{ Text = ""mitochondrial distribution""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial distribution"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
2
{ Text = ""positioning of mitochondria""\\n Scope = Related\\n TypeName = ""\\n DBXrefs = [] }
Text
"positioning of mitochondria"
Scope
Related
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0007005, GO:0051646 ]
HeadOrDefault
GO:0007005
TailOrNull
[ GO:0051646 ]
HeadOrDefault
GO:0051646
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0051646
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0051646 ]
Head
GO:0007005
Tail
[ GO:0051646 ]
HeadOrDefault
GO:0051646
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0051646
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0051646 ]
(values)
[ GO:0007005, GO:0051646 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
BuiltIn
False
CreatedBy
CreationDate
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "open Graphoscope\n", + "\n", + "// getting the is_as as IDs first...\n", + "let isAs = FContext.successors goOntologyGraph[\"GO:0000001\"]\n", + "\n", + "// then mapping them to their respective OboTerm in the graph\n", + "let isATerms = isAs |> Seq.map (fun (id,relation) -> goOntologyGraph[id] |> fun (p,term,s) -> term)\n", + "\n", + "isATerms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What about terms that point to the first is_a term that we retrieved?" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
[ { Id = "GO:0000001"\n", + " Name = "mitochondrion inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The distribution of mitochondria, including the mitochondrial genome, into daughter cells after mitosis or meiosis, mediated by interactions between mitochondria and the cytoskeleton." [GOC:mcc, PMID:10873824, PMID:11389764]"\n", + " Comment = ""\n", + " Subsets = []\n", + " Synonyms = [{ Text = ""mitochondrial inheritance""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }]\n", + " Xrefs = []\n", + " IsA = ["GO:0048308"; "GO:0048311"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = []\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" }, { Id = "GO:0000011"\n", + " Name = "vacuole inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The distribution of vacuoles into daughter cells after mitosis or meiosis, mediated by interactions between vacuoles and the cytoskeleton." [GOC:mcc, PMID:10873824, PMID:14616069]"\n", + " Comment = ""\n", + " Subsets = []\n", + " Synonyms = []\n", + " Xrefs = []\n", + " IsA = ["GO:0007033"; "GO:0048308"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = ["RO:0002161 NCBITaxon:4896"]\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" }, { Id = "GO:0009665"\n", + " Name = "plastid inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The partitioning of plastids between daughter cells at cell division." [GOC:mah]"\n", + " Comment = ""\n", + " Subsets = []\n", + " Synonyms = []\n", + " Xrefs = []\n", + " IsA = ["GO:0009657"; "GO:0048308"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = []\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" }, { Id = "GO:0045033"\n", + " Name = "peroxisome inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The acquisition of peroxisomes by daughter cells from the mother cell after replication. In Saccharomyces cerevisiae, the number of peroxisomes cells is fairly constant; a subset of the organelles are targeted and segregated to the bud in a highly ordered, vectorial process. Efficient segregation of peroxisomes from mother to bud is dependent on the actin cytoskeleton, and active movement of peroxisomes along actin filaments is driven by the class V myosin motor protein, Myo2p." [PMID:11733545]"\n", + " Comment =\n", + " "Note that 'vectorial' is used in the definition in the mathematical and physical sense of pertaining to 'a quantity having direction as well as magnitude, especially as determining the position of one point in space relative to another."\n", + " Subsets = []\n", + " Synonyms = []\n", + " Xrefs = []\n", + " IsA = ["GO:0007031"; "GO:0048308"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = []\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" }, { Id = "GO:0048309"\n", + " Name = "endoplasmic reticulum inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The partitioning of endoplasmic reticulum between daughter cells at cell division." [GOC:jid]"\n", + " Comment = ""\n", + " Subsets = []\n", + " Synonyms = [{ Text = ""ER inheritance""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }]\n", + " Xrefs = []\n", + " IsA = ["GO:0007029"; "GO:0048308"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = ["RO:0002161 NCBITaxon:4896"]\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" }, { Id = "GO:0048313"\n", + " Name = "Golgi inheritance"\n", + " IsAnonymous = false\n", + " AltIds = []\n", + " Definition =\n", + " ""The partitioning of Golgi apparatus between daughter cells at cell division." [GOC:jid, PMID:12851069]"\n", + " Comment = ""\n", + " Subsets = []\n", + " Synonyms =\n", + " [{ Text = ""Golgi apparatus inheritance""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] };\n", + " { Text = ""Golgi division""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [{ Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" }] };\n", + " { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }]\n", + " Xrefs = []\n", + " IsA = ["GO:0007030"; "GO:0048308"]\n", + " IntersectionOf = []\n", + " UnionOf = []\n", + " DisjointFrom = []\n", + " Relationships = []\n", + " IsObsolete = false\n", + " Replacedby = []\n", + " Consider = []\n", + " PropertyValues = []\n", + " BuiltIn = false\n", + " CreatedBy = ""\n", + " CreationDate = "" } ]
f
Microsoft.FSharp.Collections.SeqModule+revamp@728[System.Tuple`2[System.String,System.String],OBO.NET.OboTerm]
f
Microsoft.FSharp.Collections.SeqModule+Map@748-1[System.Tuple`2[System.String,System.String],OBO.NET.OboTerm]
mapping
FSI_0033+pointingTerms@5
ie
[ (GO:0000001, is_a), (GO:0000011, is_a), (GO:0009665, is_a), (GO:0045033, is_a), (GO:0048309, is_a), (GO:0048313, is_a) ]
CheckClose
False
LastGenerated
<null>
p
keyvalue
GO:0000001
is_a
GO:0000011
is_a
GO:0009665
is_a
GO:0045033
is_a
GO:0048309
is_a
GO:0048313
is_a
enum
<null>
pc
0
current
<null>
(values)
indexvalue
0
(GO:0000001, is_a)
Item1
GO:0000001
Item2
is_a
1
(GO:0000011, is_a)
Item1
GO:0000011
Item2
is_a
2
(GO:0009665, is_a)
Item1
GO:0009665
Item2
is_a
3
(GO:0045033, is_a)
Item1
GO:0045033
Item2
is_a
4
(GO:0048309, is_a)
Item1
GO:0048309
Item2
is_a
5
(GO:0048313, is_a)
Item1
GO:0048313
Item2
is_a
(values)
indexvalue
0
{ Id = "GO:0000001"\\n Name = "mitochondrion inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The distribution of mitochondria, including the mitochondrial genome, into daughter cells after mitosis or meiosis, mediated by interactions between mitochondria and the cytoskeleton...
Id
GO:0000001
Name
mitochondrion inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The distribution of mitochondria, including the mitochondrial genome, into daughter cells after mitosis or meiosis, mediated by interactions between mitochondria and the cytoskeleton." [GOC:mcc, PMID:10873824, PMID:11389764]
Comment
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ { Text = ""mitochondrial inheritance""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""mitochondrial inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""mitochondrial inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""mitochondrial inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"mitochondrial inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0048308, GO:0048311 ]
HeadOrDefault
GO:0048308
TailOrNull
[ GO:0048311 ]
HeadOrDefault
GO:0048311
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048311
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048311 ]
Head
GO:0048308
Tail
[ GO:0048311 ]
HeadOrDefault
GO:0048311
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048311
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048311 ]
(values)
[ GO:0048308, GO:0048311 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
BuiltIn
False
CreatedBy
CreationDate
1
{ Id = "GO:0000011"\\n Name = "vacuole inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The distribution of vacuoles into daughter cells after mitosis or meiosis, mediated by interactions between vacuoles and the cytoskeleton." [GOC:mcc, PMID:10873824, PMID:14616069]"\\n Comm...
Id
GO:0000011
Name
vacuole inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The distribution of vacuoles into daughter cells after mitosis or meiosis, mediated by interactions between vacuoles and the cytoskeleton." [GOC:mcc, PMID:10873824, PMID:14616069]
Comment
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0007033, GO:0048308 ]
HeadOrDefault
GO:0007033
TailOrNull
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
Head
GO:0007033
Tail
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
(values)
[ GO:0007033, GO:0048308 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ RO:0002161 NCBITaxon:4896 ]
HeadOrDefault
RO:0002161 NCBITaxon:4896
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
RO:0002161 NCBITaxon:4896
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ RO:0002161 NCBITaxon:4896 ]
BuiltIn
False
CreatedBy
CreationDate
2
{ Id = "GO:0009665"\\n Name = "plastid inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The partitioning of plastids between daughter cells at cell division." [GOC:mah]"\\n Comment = ""\\n Subsets = []\\n Synonyms = []\\n Xrefs = []\\n IsA = ["GO:0009657"; "GO:0048308"]\\n In...
Id
GO:0009665
Name
plastid inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The partitioning of plastids between daughter cells at cell division." [GOC:mah]
Comment
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0009657, GO:0048308 ]
HeadOrDefault
GO:0009657
TailOrNull
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
Head
GO:0009657
Tail
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
(values)
[ GO:0009657, GO:0048308 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
BuiltIn
False
CreatedBy
CreationDate
3
{ Id = "GO:0045033"\\n Name = "peroxisome inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The acquisition of peroxisomes by daughter cells from the mother cell after replication. In Saccharomyces cerevisiae, the number of peroxisomes cells is fairly constant; a subset of the...
Id
GO:0045033
Name
peroxisome inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The acquisition of peroxisomes by daughter cells from the mother cell after replication. In Saccharomyces cerevisiae, the number of peroxisomes cells is fairly constant; a subset of the organelles are targeted and segregated to the bud in a highly ordered, vectorial process. Efficient segregation of peroxisomes from mother to bud is dependent on the actin cytoskeleton, and active movement of peroxisomes along actin filaments is driven by the class V myosin motor protein, Myo2p." [PMID:11733545]
Comment
Note that 'vectorial' is used in the definition in the mathematical and physical sense of pertaining to 'a quantity having direction as well as magnitude, especially as determining the position of one point in space relative to another.
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0007031, GO:0048308 ]
HeadOrDefault
GO:0007031
TailOrNull
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
Head
GO:0007031
Tail
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
(values)
[ GO:0007031, GO:0048308 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
BuiltIn
False
CreatedBy
CreationDate
4
{ Id = "GO:0048309"\\n Name = "endoplasmic reticulum inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The partitioning of endoplasmic reticulum between daughter cells at cell division." [GOC:jid]"\\n Comment = ""\\n Subsets = []\\n Synonyms = [{ Text = ""ER inheritance""\\n ...
Id
GO:0048309
Name
endoplasmic reticulum inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The partitioning of endoplasmic reticulum between daughter cells at cell division." [GOC:jid]
Comment
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ { Text = ""ER inheritance""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""ER inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"ER inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""ER inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"ER inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method661(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method661(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method662(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method662(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""ER inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"ER inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0007029, GO:0048308 ]
HeadOrDefault
GO:0007029
TailOrNull
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
Head
GO:0007029
Tail
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
(values)
[ GO:0007029, GO:0048308 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ RO:0002161 NCBITaxon:4896 ]
HeadOrDefault
RO:0002161 NCBITaxon:4896
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
RO:0002161 NCBITaxon:4896
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Nameget_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663766
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributesT
ReturnParameterT
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Nameget_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
MemberTypeMethod
MetadataToken100663767
ModuleFSharp.Core.dll
IsSecurityCriticalTrue
IsSecuritySafeCriticalFalse
IsSecurityTransparentFalse
MethodHandleSystem.RuntimeMethodHandle
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnTypeCustomAttributesMicrosoft.FSharp.Collections.FSharpList`1[T]
ReturnParameterMicrosoft.FSharp.Collections.FSharpList`1[T]
IsCollectibleFalse
IsGenericMethodFalse
IsGenericMethodDefinitionFalse
ContainsGenericParametersTrue
MethodImplementationFlagsIL
IsAbstractFalse
IsConstructorFalse
IsFinalFalse
IsHideBySigTrue
IsSpecialNameTrue
IsStaticFalse
IsVirtualFalse
IsAssemblyFalse
IsFamilyFalse
IsFamilyAndAssemblyFalse
IsFamilyOrAssemblyFalse
IsPrivateFalse
IsPublicTrue
IsConstructedGenericMethodFalse
CustomAttributes[ ]
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ RO:0002161 NCBITaxon:4896 ]
BuiltIn
False
CreatedBy
CreationDate
5
{ Id = "GO:0048313"\\n Name = "Golgi inheritance"\\n IsAnonymous = false\\n AltIds = []\\n Definition =\\n ""The partitioning of Golgi apparatus between daughter cells at cell division." [GOC:jid, PMID:12851069]"\\n Comment = ""\\n Subsets = []\\n Synonyms =\\n [{ Text = ""Golgi apparatus inherita...
Id
GO:0048313
Name
Golgi inheritance
IsAnonymous
False
AltIds
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Definition
"The partitioning of Golgi apparatus between daughter cells at cell division." [GOC:jid, PMID:12851069]
Comment
Subsets
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Synonyms
[ { Text = ""Golgi apparatus inheritance""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] }, { Text = ""Golgi division""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [{ Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" }] }, { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi apparatus inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"Golgi apparatus inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
TailOrNull
[ { Text = ""Golgi division""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [{ Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" }] }, { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
2{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull
[ { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
Head
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
2{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail
[ { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
(values)
indexvalue
0
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
2{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"Golgi partitioning"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""Golgi apparatus inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"Golgi apparatus inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Tail
[ { Text = ""Golgi division""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [{ Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }; { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" }] }, { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
2{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull
[ { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
Head
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
2{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail
[ { Text = ""Golgi partitioning""\n", + " Scope = Exact\n", + " TypeName = ""\n", + " DBXrefs = [] } ]
HeadOrDefault
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Head
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method661(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method662(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text\"Golgi partitioning\"
ScopeExact
TypeName
DBXrefs[ ]
(values)
indexvalue
0
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }, { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:ascb_2009\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
2{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"Golgi partitioning"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
HeadSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
TailSystem.InvalidOperationException: The input list was empty.\r\n", + " at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
(values)
indexvalue
0
{ Text = ""Golgi apparatus inheritance""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"Golgi apparatus inheritance"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
1
{ Text = ""Golgi division""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }; { Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }; { Name...
Text
"Golgi division"
Scope
Exact
TypeName
DBXrefs
[ { Name = "GOC:ascb_2009"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault
{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }
NameGOC:ascb_2009
Description
Modifiers
TailOrNull
[ { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Head
{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }
NameGOC:ascb_2009
Description
Modifiers
Tail
[ { Name = "GOC:dph"\n", + " Description = ""\n", + " Modifiers = "" }, { Name = "GOC:tb"\n", + " Description = ""\n", + " Modifiers = "" } ]
HeadOrDefault{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
TailOrNull[ { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
Head{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
Tail[ { Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" } ]
(values)
indexvalue
0{ Name = \"GOC:dph\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
1{ Name = \"GOC:tb\"\n", + " Description = \"\"\n", + " Modifiers = \"\" }
(values)
indexvalue
0
{ Name = "GOC:ascb_2009"\\n Description = ""\\n Modifiers = "" }
NameGOC:ascb_2009
Description
Modifiers
1
{ Name = "GOC:dph"\\n Description = ""\\n Modifiers = "" }
NameGOC:dph
Description
Modifiers
2
{ Name = "GOC:tb"\\n Description = ""\\n Modifiers = "" }
NameGOC:tb
Description
Modifiers
2
{ Text = ""Golgi partitioning""\\n Scope = Exact\\n TypeName = ""\\n DBXrefs = [] }
Text
"Golgi partitioning"
Scope
Exact
TypeName
DBXrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method677(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method678(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
Xrefs
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method677(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method677(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method678(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method678(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)(empty)
IsA
[ GO:0007030, GO:0048308 ]
HeadOrDefault
GO:0007030
TailOrNull
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
Head
GO:0007030
Tail
[ GO:0048308 ]
HeadOrDefault
GO:0048308
TailOrNull
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Head
GO:0048308
Tail
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteT get_Head()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n", + " at lambda_method498(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSiteMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
MessageThe input list was empty.
Data[ ]
InnerException
<null>
HelpLink
<null>
SourceFSharp.Core
HResult-2146233079
StackTrace at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n", + " at lambda_method499(Closure, FSharpList`1)\r\n", + " at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
(values)
[ GO:0048308 ]
(values)
[ GO:0007030, GO:0048308 ]
IntersectionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
UnionOf
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
DisjointFrom
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Relationships
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
IsObsolete
False
Replacedby
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
Consider
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
PropertyValues
[ ]
HeadOrDefault
<null>
TailOrNull
<null>
Head
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\\r\\n at lambda_method498(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
T get_Head()
Name
get_Head
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663766
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211232
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeT
ReturnTypeCustomAttributes
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
T
ParameterTypeT
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberT get_Head()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Head() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4136\r\n",
+       "   at lambda_method498(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
Tail
System.InvalidOperationException: The input list was empty.\\r\\n at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\\r\\n at lambda_method499(Closure, FSharpList`1)\\r\\n at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetVa...
TargetSite
Microsoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Name
get_Tail
DeclaringTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReflectedTypeMicrosoft.FSharp.Collections.FSharpList<T>
MemberTypeMethod
MetadataToken
100663767
Module
FSharp.Core.dll
MDStreamVersion131072
FullyQualifiedNameC:\\Users\\revil\\.nuget\\packages\\microsoft.dotnet-interactive\\1.0.451701\\tools\\net7.0\\any\\FSharp.Core.dll
ModuleVersionId6dbe05a8-5c53-690c-c522-0b7a960bbd24
MetadataToken1
ScopeNameFSharp.Core.dll
NameFSharp.Core.dll
AssemblyFSharp.Core, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
ModuleHandleSystem.ModuleHandle
CustomAttributes[ ]
IsSecurityCritical
True
IsSecuritySafeCritical
False
IsSecurityTransparent
False
MethodHandle
System.RuntimeMethodHandle
Value140731053211248
AttributesPrivateScope, Public, HideBySig, SpecialName
CallingConventionStandard, HasThis
ReturnTypeMicrosoft.FSharp.Collections.FSharpList<T>
ReturnTypeCustomAttributes
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
ReturnParameter
Microsoft.FSharp.Collections.FSharpList`1[T]
ParameterTypeMicrosoft.FSharp.Collections.FSharpList`1[T]
Name
<null>
HasDefaultValueTrue
DefaultValue
<null>
RawDefaultValue
<null>
MetadataToken134217728
AttributesNone
MemberMicrosoft.FSharp.Collections.FSharpList`1[T] get_Tail()
Position-1
IsInFalse
IsLcidFalse
IsOptionalFalse
IsOutFalse
IsRetvalFalse
CustomAttributes[ ]
IsCollectible
False
IsGenericMethod
False
IsGenericMethodDefinition
False
ContainsGenericParameters
True
MethodImplementationFlagsIL
IsAbstract
False
IsConstructor
False
IsFinal
False
IsHideBySig
True
IsSpecialName
True
IsStatic
False
IsVirtual
False
IsAssembly
False
IsFamily
False
IsFamilyAndAssembly
False
IsFamilyOrAssembly
False
IsPrivate
False
IsPublic
True
IsConstructedGenericMethod
False
CustomAttributes(empty)
Message
The input list was empty.
Data(empty)
InnerException
<null>
HelpLink
<null>
Source
FSharp.Core
HResult
-2146233079
StackTrace
   at Microsoft.FSharp.Collections.FSharpList`1.get_Tail() in D:\\a\\_work\\1\\s\\src\\FSharp.Core\\prim-types.fs:line 4141\r\n",
+       "   at lambda_method499(Closure, FSharpList`1)\r\n",
+       "   at Microsoft.DotNet.Interactive.Formatting.MemberAccessor`1.GetValueOrException(T instance) in D:\\a\\_work\\1\\s\\src\\Microsoft.DotNet.Interactive.Formatting\\MemberAccessor{T}.cs:line 64
(values)
[  ]
BuiltIn
False
CreatedBy
CreationDate
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "// again: first the IDs...\n", + "let pointingTermIds = FContext.predecessors goOntologyGraph[(Seq.head isATerms).Id]\n", + "\n", + "// afterwards the OboTerms\n", + "let pointingTerms = pointingTermIds |> Seq.map (fun (id,relation) -> goOntologyGraph[id] |> fun (p,term,s) -> term)\n", + "\n", + "pointingTerms" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Visualization\n", + "\n", + "We've seen how to work with ontology graphs, but what about visualization?\n", + "\n", + "The Gene Ontology is pretty big, with over 47k terms. Let's use a smaller subset of it so that we keep the overview:" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [], + "source": [ + "let goSlimContent = FSharp.Data.Http.RequestString(@\"https://current.geneontology.org/ontology/subsets/goslim_agr.obo\").Split('\\n')\n", + "\n", + "let goSlimOboOntology = OboOntology.fromLines false goSlimContent\n", + "\n", + "let goSlimOntologyGraph = ontologyToFGraph true goSlimOboOntology" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We start with just printing the relations between each term:" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DNA-binding transcription factor activity ---\"has_part\"---> DNA binding\n", + "endosome ---\"is_a\"---> cytoplasmic vesicle\n", + "cell differentiation ---\"is_a\"---> developmental process\n", + "synapse ---\"is_a\"---> cell junction\n" + ] + } + ], + "source": [ + "Visualization.printGraphTermNames goSlimOntologyGraph" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "And here's how to turn them into Cytoscape graphs:" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
Installed Packages
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "Loading extensions from `C:\\Users\\revil\\.nuget\\packages\\cytoscape.net.interactive\\0.2.0\\interactive-extensions\\dotnet\\Cytoscape.NET.Interactive.dll`" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#r \"nuget: Cytoscape.NET.Interactive\"\n", + "\n", + "Visualization.toCyGraph Visualization.matchRelationColorDefault false goSlimOntologyGraph" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are using `matchRelationColorDefault` here that provides some basic coloring for the most common OboTerm relation types, but we can also create our own function for our needs:" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "open Cytoscape.NET\n", + "\n", + "let matchRelationColorSpecific relation =\n", + " match relation with\n", + " | \"is_a\" -> CyParam.color \"blue\"\n", + " | \"has_part\" -> CyParam.color \"green\"\n", + " | _ -> CyParam.color \"white\"\n", + "\n", + "Visualization.toCyGraph matchRelationColorSpecific false goSlimOntologyGraph" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, the `toCyGraph` function also allows for incorporating single nodes without edges:" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "dotnet_interactive": { + "language": "fsharp" + }, + "polyglot_notebook": { + "kernelName": "fsharp" + }, + "vscode": { + "languageId": "polyglot-notebook" + } + }, + "outputs": [ + { + "data": { + "text/html": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "Visualization.toCyGraph matchRelationColorSpecific true goSlimOntologyGraph" + ] + } + ], + "metadata": { + "language_info": { + "name": "python" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/posts/oboOntologyGraph/post_config.md b/src/posts/oboOntologyGraph/post_config.md new file mode 100644 index 0000000..e123206 --- /dev/null +++ b/src/posts/oboOntologyGraph/post_config.md @@ -0,0 +1,9 @@ +--- +title: Creating graphs from OBO ontologies +author: Oliver Maus +author_link: https://github.com/omaus +category: advanced +date: 2023-10-19 +summary: How 2 load an OBO file and transform it into a graph. +preview_image: +--- \ No newline at end of file