tokens list | ner_tags list |
|---|---|
[
"Analyses",
",",
"columns(id",
",",
"name",
",",
"game_id(FK",
"));"
] | [
"B-Variable",
"O",
"B-Data_Structure",
"O",
"B-Variable",
"O",
"B-Variable",
"I-Variable"
] |
[
"Games",
",",
"columns(id",
",",
"name",
",",
"round_id(FK",
"));"
] | [
"B-Variable",
"O",
"B-Data_Structure",
"O",
"B-Variable",
"O",
"B-Variable",
"I-Variable"
] |
[
"Round",
",",
"columns(id,",
"round)",
";"
] | [
"B-Variable",
"O",
"B-Data_Structure",
"B-Variable",
"O"
] |
[
"I",
"need",
"get",
"all",
"records",
"of",
"Analyses",
"order",
"by",
"(",
"round_id",
")",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"B-Variable",
"O",
"O"
] |
[
"I",
"try",
"Analyses::orderBy('round_id')->get()",
",",
"but",
"not",
"work",
";"
] | [
"O",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"O"
] |
[
"First",
"of",
"all",
",",
"you",
"dont",
"have",
"that",
"column",
"in",
"your",
"analyses",
"table"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"B-Data_Structure"
] |
[
"to",
"do",
"the",
"orderby",
"you",
"have",
"to",
"add",
"this",
"to",
"your",
"relation",
"(",
"assuming",
"they",
"are",
"correctly",
"done",
")"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Analyses",
"model"
] | [
"O",
"O"
] |
[
"Games",
"model"
] | [
"B-Variable",
"O"
] |
[
"Now",
"you",
"can",
"get",
"all",
"the",
"Analyses",
"with",
"the",
"games",
"and",
"round",
"using",
"eagerloading",
"like",
"this"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"you",
"can",
"chain",
"another",
"orderby",
"for",
"Analyses",
"like",
"this",
"for",
"exemple"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O"
] |
[
"in",
"the",
"above",
"exemple",
",",
"you",
"will",
"have",
"Analyses",
"ordered",
"by",
"game_id",
"and",
"the",
"games",
"inside",
"each",
"Analyse",
"will",
"be",
"orderedby",
"round_id"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"B-Variable"
] |
[
"I",
"hope",
"this",
"is",
"what",
"you",
"want",
"to",
"do"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Analyses",
"model"
] | [
"B-Variable",
"O"
] |
[
"Round",
"Model"
] | [
"B-Variable",
"O"
] |
[
"Game",
"Model"
] | [
"B-Variable",
"O"
] |
[
"Your",
"Query",
"Should",
"be",
"like",
"This"
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'m",
"reading",
"the",
"book",
"Programming",
"Entity",
"Framework",
":",
"DbContext",
"and",
"I",
"just",
"read",
"the",
"chapter",
"on",
"the",
"three",
"data",
"loading",
"types",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Lazy",
"loading",
"(",
"default",
")"
] | [
"B-Algorithm",
"I-Algorithm",
"O",
"O",
"O"
] |
[
"Eager",
"loading"
] | [
"B-Algorithm",
"I-Algorithm"
] |
[
"Explicit",
"loading"
] | [
"B-Algorithm",
"I-Algorithm"
] |
[
"Now",
"I",
"'m",
"asking",
"myself",
"which",
"data",
"loading",
"is",
"better",
"in",
"which",
"situation",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"A",
"concrete",
"comparison",
"would",
"be",
"nice",
"!"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"have",
"n't",
"found",
"any",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"For",
"example",
",",
"I",
"'m",
"using",
"default",
"lazy",
"loading",
"on",
"a",
"module",
"for",
"a",
"client",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Algorithm",
"I-Algorithm",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O"
] |
[
"This",
"module",
"deals",
"with",
"sales",
"reps",
"and",
"imply",
"these",
"related",
"tables",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Reps"
] | [
"B-Variable"
] |
[
"Reps_Zones"
] | [
"B-Variable"
] |
[
"Reps_Prerequisites"
] | [
"B-Variable"
] |
[
"Users"
] | [
"B-Variable"
] |
[
"Reps_Languages"
] | [
"B-Variable"
] |
[
"etc",
"."
] | [
"O",
"O"
] |
[
"On",
"the",
"module",
",",
"I",
"use",
"all",
"these",
"tables",
"to",
"dispatch",
"appointments",
"(",
"about",
"150",
"appointments",
"to",
"50",
"reps",
"at",
"a",
"time",
")",
",",
"but",
"it",
"'s",
"slow",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Would",
"using",
"a",
"different",
"loading",
"strategy",
"really",
"improve",
"the",
"performances",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Lazy-loading",
"seems",
"most",
"suitable",
"for",
"smaller",
"apps",
"without",
"separate",
"data",
"layers",
"."
] | [
"B-Algorithm",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Once",
"the",
"app",
"grows",
"and",
"you",
"start",
"separating",
"it",
"into",
"separate",
"layers",
",",
"lazy",
"loading",
"becomes",
"less",
"useful",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Algorithm",
"I-Algorithm",
"O",
"O",
"O",
"O"
] |
[
"The",
"DBcontext",
"has",
"long",
"since",
"been",
"destroyed",
"by",
"the",
"time",
"the",
"data",
"gets",
"to",
"the",
"UI",
"layer",
",",
"and",
"while",
"you",
"are",
"within",
"the",
"datalayer",
"it",
"is",
"not",
"a",
"big",
"deal",
"to",
"spec... | [
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Lazy",
"loading",
"is",
"turned",
"off",
"for",
"validation",
",",
"so",
"if",
"a",
"property",
"is",
"marked",
"as",
"required",
"and",
"you",
"have",
"only",
"loaded",
"the",
"parent",
"an",
"error",
"will",
"always",
"be",
"thrown",
"which",
"is",
"v... | [
"B-Algorithm",
"I-Algorithm",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Lazy",
"loading",
"also",
"makes",
"debugging",
"rather",
"tricky",
"as",
"the",
"query",
"isnt",
"executed",
"until",
"it",
"is",
"used",
"so",
"you",
"ca",
"n't",
"examine",
"the",
"results",
"of",
"the",
"query",
"as",
"easily",
"."
] | [
"B-Algorithm",
"I-Algorithm",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"usually",
"add",
"a",
"ToList()",
"or",
"similar",
"to",
"my",
"EF",
"queries",
"so",
"I",
"can",
"easily",
"examine",
"the",
"results",
"."
] | [
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"seems",
"like",
"there",
"'s",
"a",
"bug",
"with",
"the",
"facebook",
"page",
"tabs",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Website",
"O",
"B-User_Interface_Element",
"O"
] |
[
"Lots",
"of",
"them",
"are",
"rendering",
"content",
"on",
"the",
"bottom",
"of",
"the",
"page",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O"
] |
[
"Is",
"there",
"a",
"change",
"that",
"developers",
"must",
"be",
"aware",
"of",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Problem",
"still",
"persists",
"."
] | [
"O",
"O",
"O",
"O"
] |
[
"There",
"is",
"a",
"bug",
"listed",
"on",
"Facebook",
"http://developers.facebook.com/bugs/298512163544012?browse=search_4f3c5c801a70d4639459595",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-Website",
"O",
"O"
] |
[
"I",
"hope",
"it",
"gets",
"prioritized",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"is",
"in",
"fact",
"a",
"bug",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'ve",
"just",
"spent",
"an",
"hour",
"looking",
"into",
"it",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"It",
"appears",
"that",
"they",
"have",
"increased",
"the",
"width",
"of",
"the",
"right",
"pane",
"and",
"it",
"has",
"caused",
"the",
"content",
"area",
"to",
"shrink",
"to",
"less",
"than",
"520px",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"I-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O"
] |
[
"Unfortunately",
",",
"the",
"iframe",
"that",
"Facebook",
"uses",
"to",
"display",
"app",
"content",
"is",
"hardcoded",
"with",
"a",
"520px",
"width",
"and",
"you",
"are",
"unable",
"to",
"modify",
"it",
"."
] | [
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"B-Website",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Need",
"to",
"wait",
"till",
"Facebook",
"pushes",
"out",
"an",
"update",
"."
] | [
"O",
"O",
"O",
"O",
"B-Website",
"O",
"O",
"O",
"O",
"O"
] |
[
"Edit",
":",
"Bug",
"reported",
"to",
"facebook",
"already",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Website",
"O",
"O"
] |
[
"Details",
"here"
] | [
"O",
"O"
] |
[
"I",
"see",
"it",
"is",
"used",
"in",
"separate",
"window",
"by",
"blue",
"griffon",
",",
"but",
"is",
"it",
"possible",
"to",
"make",
"it",
"edit",
"the",
"svg",
"in",
"place",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"B-Application",
"I-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O"
] |
[
"In",
"theory",
"you",
"could",
"open",
"svg-edit.html",
"and",
"remove",
"any",
"html",
",",
"head",
",",
"and",
"body",
"tags",
"and",
"move",
"the",
"content",
"of",
"the",
"page",
"to",
"your",
"page",
"and",
"then",
"load",
"js/css",
"resources",
"o... | [
"O",
"O",
"O",
"O",
"O",
"B-File_Name",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O"
] |
[
"Is",
"there",
"a",
"specific",
"need",
"to",
"place",
"it",
"inline",
"though",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"You",
"can",
"still",
"interact",
"with",
"SVG-Edit",
"even",
"while",
"it",
"'s",
"in",
"an",
"iframe",
"if",
"you",
"need",
"to",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"B-HTML_XML_Tag",
"O",
"O",
"O",
"O",
"O"
] |
[
"For",
"example",
",",
"to",
"get",
"the",
"SVG",
"content",
"that",
"the",
"user",
"is",
"editing",
",",
"you",
"would",
"use"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"B-File_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Is",
"there",
"any",
"way",
"how",
"to",
"set",
"to",
"ListBoxItem",
"different",
"showing",
"text",
"and",
"different",
"hidden",
"value",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"want",
"same",
"thing",
"as",
"I",
"can",
"do",
"in",
"HTML",
"that",
"way",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O"
] |
[
"Of",
"course",
",",
"but",
"that",
"'s",
"not",
"the",
"way",
"you",
"do",
"things",
"with",
"XAML",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Language",
"O"
] |
[
"You",
"could",
"set",
"a",
"Tag",
"property",
"on",
"your",
"ListBoxItem",
"to",
"anything",
",",
"but",
"the",
"common",
"approach",
"is",
"to",
"use",
"the",
"MVVM",
"pattern",
"and",
"bindings",
"where",
"you",
"would",
"set",
"ItemsSource",
"of",
"you... | [
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"B-Class",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
... |
[
"You",
"would",
"bind",
"the",
"visible",
"properties",
"to",
"the",
"elements",
"in",
"the",
"ItemTemplate",
"of",
"your",
"ListBox",
"and",
"bind",
"SelectedItem",
"of",
"the",
"ListBox",
"with",
"a",
"TwoWay",
"binding",
"to",
"a",
"property",
"of",
"your... | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"B-Class",
"O",
"O",
"B-Function",
"O",
"O",
"B-Class",
"O",
"O",
"B-Function",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Now",
"if",
"you",
"do",
"n't",
"care",
"about",
"patterns",
"and",
"simply",
"want",
"to",
"see",
"it",
"working",
"-",
"go",
"ahead",
"and",
"use",
"the",
"Tag",
"and",
"the",
"SelectionChanged",
"event",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Function",
"O",
"O",
"B-Function",
"O",
"O"
] |
[
"In",
"Safari",
"the",
"colors",
"are",
"not",
"showing",
"up",
"correctly",
"."
] | [
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"However",
"everything",
"is",
"working",
"in",
"IE",
",",
"FF",
"and",
"Chrome",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"B-Application",
"O",
"B-Application",
"O"
] |
[
"I",
"'d",
"like",
"to",
"make",
"it",
"work",
"cross-browser",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O"
] |
[
"Is",
"there",
"any",
"way",
"to",
"accomplish",
"that",
"?"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Why",
"does",
"n't",
"Safari",
"show",
"the",
"right",
"colors",
"fpr",
"my",
"css",
"buttons",
"and",
"background",
"color",
"and",
"how",
"can",
"this",
"be",
"solved",
"to",
"make",
"it",
"work",
"in",
"all",
"major",
"browsers",
"?"
] | [
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Language",
"B-User_Interface_Element",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O"
] |
[
"Thank",
"you",
"for",
"reading",
"this",
"question",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"EDIT",
"1",
"Screenshots"
] | [
"O",
"O",
"O"
] |
[
"As",
"requested",
"in",
"the",
"comments",
":",
"I",
"added",
"2",
"screenshots",
"to",
"show",
"what",
"is",
"not",
"working.",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Note",
":",
"The",
"blue",
"arrow",
"is",
"working",
"and",
"is",
"not",
"an",
"issue",
",",
"just",
"did",
"n't",
"incude",
"it",
"to",
"the",
"Safari",
"screen",
"capture",
"..",
"."
] | [
"O",
"O",
"O",
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"O",
"O"
] |
[
"The",
"background",
"color",
"and",
"the",
"color",
"used",
"by",
"the",
"css",
"buttons",
"are",
"the",
"issue.",
"."
] | [
"O",
"B-User_Interface_Element",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Language",
"B-User_Interface_Element",
"O",
"O",
"O",
"O"
] |
[
"The",
"picture",
"below",
"is",
"a",
"firefox",
"42",
"screen",
"capture",
",",
"it",
"looks",
"like",
"this",
"in",
"MSIE",
"and",
"Chrome",
"as",
"well",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"B-Application",
"B-Version",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Application",
"O",
"B-Application",
"O",
"O",
"O"
] |
[
"The",
"picture",
"below",
"is",
"a",
"Safari",
"5.1.7",
"screen",
"capture"
] | [
"O",
"O",
"O",
"O",
"O",
"B-Application",
"B-Version",
"O",
"O"
] |
[
"For",
"older",
"versions",
"of",
"Safari",
"use",
":",
"-webkit-linear-gradient(#FFF,#000)",
"."
] | [
"O",
"O",
"O",
"O",
"B-Application",
"O",
"O",
"B-Code_Block",
"O"
] |
[
"I",
"am",
"trying",
"to",
"use",
"vector",
"variables",
"as",
"global",
"and",
"externing",
"it",
"to",
"use",
"it",
"in",
"another",
"file",
",",
"Here",
"is",
"my",
"code"
] | [
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Header",
"file",
":"
] | [
"B-File_Type",
"O",
"O"
] |
[
"My",
"header",
"file",
"has",
"no",
"definition",
"of",
"the",
"vector",
"variables",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O"
] |
[
"Main.cpp"
] | [
"B-File_Name"
] |
[
"functions.cpp"
] | [
"B-File_Name"
] |
[
"However",
"I",
"am",
"getting",
"the",
"following",
"error",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"am",
"new",
"to",
"C++",
",",
"could",
"anyone",
"please",
"help",
"me",
"out",
"here",
"."
] | [
"O",
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"change"
] | [
"O"
] |
[
"to"
] | [
"O"
] |
[
"because",
"extern",
"std::vector<Point2f>",
"obj_corners(4)",
";",
"is",
"a",
"definition",
"since",
"you",
"provide",
"an",
"initializer",
"."
] | [
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"What",
"you",
"need",
"is",
"a",
"declaration",
"just",
"to",
"let",
"the",
"program",
"know",
"that",
"vector",
"exists",
"somewhere",
"else",
"in",
"this",
"program",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Structure",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"have",
"a",
"case",
"where",
"I",
"want",
"to",
"check",
"if",
"an",
"optional",
"I",
"have",
"is",
"Equal",
"to",
"a",
"string",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"First",
"I",
"have",
"to",
"unwrap",
"it",
"to",
"check",
"if",
"it",
"exists",
",",
"then",
"I",
"want",
"to",
"check",
"if",
"it",
"is",
"equal",
"to",
"another",
"string",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"However",
"that",
"gives",
"me",
"a",
"problem",
"where",
"I",
"have",
"to",
"write",
"the",
"same",
"code",
"twice",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"I",
"'ll",
"give",
"you",
"an",
"example",
":"
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"As",
"you",
"can",
"see",
",",
"I",
"have",
"to",
"write",
"the",
"else",
"statement",
"twice",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Once",
",",
"if",
"the",
"name",
"exists",
"and",
"it",
"is",
"not",
"'",
"John",
"'",
",",
"and",
"another",
"time",
"for",
"when",
"the",
"name",
"does",
"not",
"exist",
"."
] | [
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"O",
"O",
"O"
] |
[
"My",
"question",
"is",
",",
"how",
"can",
"this",
"be",
"done",
"the",
"proper",
"way",
"."
] | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"Thanks",
"for",
"your",
"help",
"!"
] | [
"O",
"O",
"O",
"O",
"O"
] |
[
"Optional",
"has",
"an",
"==",
"operator",
"defined",
"for",
"it",
"in",
"the",
"Swift",
"standard",
"library",
":"
] | [
"B-Data_Type",
"O",
"O",
"B-Code_Block",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Language",
"O",
"O",
"O"
] |
[
"That",
"means",
"if",
"the",
"optional",
"contains",
"a",
"value",
"that",
"'s",
"equatable",
",",
"you",
"can",
"compare",
"two",
"optionals",
"."
] | [
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O"
] |
[
"If",
"the",
"two",
"optionals",
"are",
"both",
"nil",
"they",
"'re",
"equal",
",",
"and",
"if",
"the",
"two",
"optionals",
"wrap",
"values",
"that",
"are",
"equal",
",",
"then",
"they",
"'re",
"equal",
"."
] | [
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Data_Type",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O"
] |
[
"So",
"if",
"you",
"do",
"n't",
"care",
"about",
"whether",
"person.name",
"is",
"nil",
"or",
"not",
",",
"just",
"whether",
"it",
"contains",
"a",
"value",
"of",
"\"",
"John",
"\"",
",",
"you",
"can",
"just",
"write",
"if",
"person.name",
"==",
"\"",
... | [
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Variable",
"O",
"B-Value",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"O",
"B-Value",
"I-Value",
"I-Value",
"O",
"O",
"O",
"O",
"O",
"B-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_Block",
"I-Code_... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.