chunk_id
large_stringlengths
7
11
question_id
large_stringlengths
4
8
language
large_stringclasses
1 value
chunk_index
int64
0
5
chunk_text
large_stringlengths
128
2.78k
sparse_text
large_stringlengths
116
3.65k
dense_vector
listlengths
3.58k
3.58k
sparse_indices
listlengths
9
228
sparse_values
listlengths
9
228
export_source
large_stringclasses
1 value
48974835_c0
48974835
fsharp
0
Title: F# json parser does not recognize floats Problem title: F# json parser does not recognize floats Tags: f%23-data, f%23, json Problem: F# json parser does not recognize floats I was trying json fsharp.data in a f# project. But it seems the json parser does not recognise floats. open FSharp.Data type Simple = Json...
F# json parser does not recognize floats F# json parser does not recognize floats f%23-data f%23 json FSharp.Data Simple JsonProvider Simple.Parse input.Float input.Int input.String F# json parser does not recognize floats I was trying json fsharp.data in a f# project. But it seems the json parser does not recognise fl...
[ 0.00787353515625, 0.03173828125, -0.00262451171875, 0.006256103515625, -0.0002155303955078125, 0.00543212890625, 0.0034637451171875, 0.00067138671875, -0.014892578125, 0.0208740234375, -0.007598876953125, 0.00830078125, -0.00051116943359375, -0.0017242431640625, 0.0245361328125, 0.0140...
[ 563, 4904, 1647, 1681, 366, 2189, 959, 125296, 21917, 9821, 1238, 27495, 10135, 3742, 93774, 3467, 254, 137989, 60552, 821, 177997, 28636, 107730, 365, 257, 14602, 31577, 89280, 13452, 442, 75530, 93, 184, 44691 ]
[ 0.1209716796875, 0.1748046875, 0.1026611328125, 0.180419921875, 0.0963134765625, 0.13134765625, 0.10107421875, 0.145751953125, 0.218505859375, 0.1192626953125, 0.098388671875, 0.00677490234375, 0.0982666015625, 0.013885498046875, 0.047607421875, 0.1160888671875, 0.1148681640625, 0....
embed
1504632_c0
1504632
fsharp
0
Title: Unit-safe square roots Problem title: Unit-safe square roots Tags: units-of-measurement, math, functional-programming, f%23 Problem: Unit-safe square roots I just wondered how it is possible to write a user-defined square root function (sqrt) in a way that it interacts properly with F#'s unit system . What it sh...
Unit-safe square roots Unit-safe square roots units-of-measurement math functional-programming f%23 Unit-safe Delete Reassign Unit-safe square roots I just wondered how it is possible to write a user-defined square root function (sqrt) in a way that it interacts properly with F#'s unit system . What it should be like: ...
[ -0.017333984375, 0.03271484375, 0.0185546875, -0.01300048828125, 0.006805419921875, -0.0186767578125, 0.0022125244140625, -0.0101318359375, 0.005462646484375, 0.003204345703125, -0.0031280517578125, 0.0255126953125, 0.0069580078125, -0.021484375, -0.005950927734375, -0.005706787109375,...
[ 46640, 115840, 108047, 74855, 25072, 4390, 37440, 56851, 48909, 123309, 28966, 1238, 3949, 3742, 262, 46485, 853, 162, 31304, 32195, 3642, 442, 83, 7722, 33022, 38937, 112, 5983, 32354, 7, 864, 3198, 78974, 155965, 678, 563, 4904, 5426, 560...
[ 0.16357421875, 0.2159423828125, 0.152099609375, 0.2083740234375, 0.18017578125, 0.06707763671875, 0.038360595703125, 0.037200927734375, 0.0806884765625, 0.1024169921875, 0.098388671875, 0.0428466796875, 0.02020263671875, 0.0841064453125, 0.0811767578125, 0.1807861328125, 0.0696411132...
embed
28412550_c0
28412550
fsharp
0
Title: Search &amp; Replace in tree Problem title: Search &amp; Replace in tree Tags: functional-programming, f%23 Problem: Search & Replace in tree I want to do a search and replace in a tree, searching for a subtree and replacing it with another: type Tree = | A of string | B of int | C of List<Tree> let rec replace ...
Search &amp; Replace in tree Search &amp; Replace in tree functional-programming f%23 Search Replace Tree List List.map Search & Replace in tree I want to do a search and replace in a tree, searching for a subtree and replacing it with another: Is there an easier way or more generic way to do this and similar transform...
[ -0.006805419921875, 0.0201416015625, 0.00958251953125, 0.0213623046875, 0.0079345703125, -0.0107421875, -0.0032196044921875, -0.013671875, 0.0206298828125, -0.006805419921875, -0.00787353515625, -0.00201416015625, -0.01165771484375, 0.01080322265625, 0.01519775390625, -0.00448608398437...
[ 33086, 619, 25133, 74, 853, 23935, 23, 53201, 123309, 28966, 214, 1238, 3949, 3742, 101344, 32036, 62346, 87, 3444, 54, 10, 33938, 136, 91995, 157318, 100, 1614, 62600, 456, 133266, 442, 678, 15700, 99156, 3917, 1286, 189534, 903, 21373, ...
[ 0.26611328125, 0.1593017578125, 0.12841796875, 0.0357666015625, 0.158447265625, 0.2362060546875, 0.135009765625, 0.26953125, 0.16552734375, 0.144775390625, 0.001678466796875, 0.1180419921875, 0.0264892578125, 0.1483154296875, 0.2359619140625, 0.142822265625, 0.209228515625, 0.02337...
embed
48454843_c0
48454843
fsharp
0
Title: In Akka.Net, how would a non-UI actor communicate data back to the UI thread? Problem title: In Akka.Net, how would a non-UI actor communicate data back to the UI thread? Tags: akka.net, f%23 Problem: In Akka.Net, how would a non-UI actor communicate data back to the UI thread? The only references I can find inv...
In Akka.Net, how would a non-UI actor communicate data back to the UI thread? In Akka.Net, how would a non-UI actor communicate data back to the UI thread? akka.net f%23 Akka.Net In Akka.Net, how would a non-UI actor communicate data back to the UI thread? The only references I can find involve configuring the actor to...
[ 0.001678466796875, 0.039306640625, 0.0079345703125, -0.006683349609375, -0.0162353515625, -0.00885009765625, 0.021484375, 0.0169677734375, -0.014892578125, -0.0220947265625, 0.01080322265625, 0.001373291015625, 0.0167236328125, 0.007598876953125, 0.00848388671875, 0.028564453125, 0.0...
[ 62, 5515, 5, 24447, 3642, 2806, 351, 9, 33457, 39329, 127219, 67, 2053, 4420, 47, 111481, 86997, 360, 81866, 1179, 1238, 3742, 10, 91067, 59994, 11675, 29197, 563, 4904, 831, 92858, 41524, 4527, 19010, 101966, 47691, 22829, 136, 217835, 4...
[ 0.0838623046875, 0.243408203125, 0.0180511474609375, 0.1861572265625, 0.0743408203125, 0.07257080078125, 0.18798828125, 0.04833984375, 0.18994140625, 0.2130126953125, 0.217041015625, 0.0745849609375, 0.1719970703125, 0.1983642578125, 0.155517578125, 0.2000732421875, 0.2183837890625, ...
embed
66957905_c0
66957905
fsharp
0
Title: Why error &quot;FS0239 an implementation of the file or module has already been given&quot;? Problem title: Why error &quot;FS0239 an implementation of the file or module has already been given&quot;? Tags: visual-studio, f%23 Problem: Why error "FS0239 an implementation of the file or module has already been gi...
Why error &quot;FS0239 an implementation of the file or module has already been given&quot;? Why error &quot;FS0239 an implementation of the file or module has already been given&quot;? visual-studio f%23 Why FS0239 Why error "FS0239 an implementation of the file or module has already been given"? Visual Studio is unde...
[ 0.015625, 0.009521484375, -0.00970458984375, 0.009521484375, 0.005767822265625, 0.007476806640625, 0.00628662109375, -0.005828857421875, 0.00567626953125, 0.01129150390625, -0.0028228759765625, -0.0257568359375, 0.0201416015625, 0.0167236328125, 0.0126953125, 0.00567626953125, -0.023...
[ 44084, 18499, 36381, 9550, 9323, 142, 208124, 111, 11435, 707, 88996, 1556, 21771, 2809, 34475, 21176, 52629, 1238, 3742, 93774, 73372, 22968, 1379, 150, 592, 70, 563, 4904, 18151, 31344, 102158, 4842, 3181, 9815, 26008, 184763, 33938, 187895...
[ 0.1275634765625, 0.222412109375, 0.2117919921875, 0.157958984375, 0.2496337890625, 0.056427001953125, 0.2347412109375, 0.032379150390625, 0.1973876953125, 0.06988525390625, 0.199462890625, 0.13037109375, 0.2313232421875, 0.137451171875, 0.165283203125, 0.185791015625, 0.186767578125,...
embed
62171297_c0
62171297
fsharp
0
Title: What is the equivalent of &quot;import&quot; in F# Problem title: What is the equivalent of &quot;import&quot; in F# Tags: .net, f%23, monodevelop, visual-studio Problem: What is the equivalent of "import" in F# How can I import a function from another file in F#? Like you do import in Python. I tried open , #us...
What is the equivalent of &quot;import&quot; in F# What is the equivalent of &quot;import&quot; in F# .net f%23 monodevelop visual-studio open // What Log.fs Log Hello World Program.fs EntryPoint Not What is the equivalent of "import" in F# How can I import a function from another file in F#? Like you do import in Pyth...
[ -0.011962890625, 0.01434326171875, -0.000885009765625, 0.008544921875, 0.0027008056640625, -0.0045166015625, -0.007598876953125, -0.01544189453125, 0.005706787109375, -0.04638671875, 0.00147247314453125, -0.00701904296875, -0.0205078125, -0.00098419189453125, 0.0177001953125, -0.015747...
[ 70, 183234, 41502, 60270, 23, 563, 4904, 4865, 83, 1179, 1238, 3742, 22460, 229815, 21176, 52629, 9803, 13146, 17447, 35378, 6661, 7663, 357, 15123, 147534, 11205, 831, 87, 24927, 10, 32354, 1295, 15700, 11435, 145581, 223, 43240, 51521, 45...
[ 0.025604248046875, 0.187744140625, 0.044586181640625, 0.31396484375, 0.050506591796875, 0.15625, 0.227294921875, 0.0128173828125, 0.005645751953125, 0.132080078125, 0.0784912109375, 0.05975341796875, 0.1142578125, 0.12939453125, 0.12939453125, 0.1375732421875, 0.14111328125, 0.1552...
embed
20163060_c0
20163060
fsharp
0
Title: Advice on an F# function Problem title: Advice on an F# function Tags: parallel-processing, f%23, task-parallel-library, functional-programming Problem: Advice on an F# function I am currently learning F# and need some advice on this function... I am testing the Parallel.Invoke. the final line is throwing an une...
Advice on an F# function Advice on an F# function parallel-processing f%23 task-parallel-library functional-programming Advice pmap_tpl_parin xs:Array new_xs Array.zeroCreate xs.Length Parallel.Invoke Action Advice on an F# function I am currently learning F# and need some advice on this function... I am testing the Pa...
[ -0.0162353515625, 0.01318359375, 0.00162506103515625, -0.00958251953125, -0.017333984375, -0.00726318359375, 0.01513671875, -0.018310546875, -0.00069427490234375, -0.018798828125, -0.004852294921875, 0.0289306640625, 0.0068359375, 0.021728515625, 0.0137939453125, -0.002838134765625, ...
[ 3145, 20375, 98, 142, 563, 4904, 32354, 95103, 63923, 1238, 3949, 3742, 66211, 6276, 1229, 141, 150, 2844, 123309, 28966, 3592, 2631, 2424, 2500, 73, 1022, 7, 12, 7614, 7092, 3525, 425, 69253, 53, 80510, 63784, 449, 211485, 4153, 23253, ...
[ 0.08612060546875, 0.1539306640625, 0.039794921875, 0.025177001953125, 0.1536865234375, 0.2301025390625, 0.196044921875, 0.210205078125, 0.07110595703125, 0.09466552734375, 0.007720947265625, 0.0963134765625, 0.0877685546875, 0.05853271484375, 0.092529296875, 0.0489501953125, 0.016723...
embed
38916578_c0
38916578
fsharp
0
Title: callback function from an async workflow f# Problem title: callback function from an async workflow f# Tags: f%23, asynchronous Problem: callback function from an async workflow f# I'm in a little bit of a pickle here. I can't seem to make async workflow to callback at each step of a computation. Here's my code ...
callback function from an async workflow f# callback function from an async workflow f# f%23 asynchronous an task.ContinueWith callback function from an async workflow f# I'm in a little bit of a pickle here. I can't seem to make async workflow to callback at each step of a computation. Here's my code
[ -0.0157470703125, 0.00787353515625, -0.0019683837890625, 0.008544921875, 0.01025390625, 0.0067138671875, 0.013916015625, 0.00982666015625, 0.0172119140625, -0.0322265625, -0.0169677734375, 0.0159912109375, -0.00885009765625, -0.00341796875, 0.017822265625, 0.000339508056640625, 0.008...
[ 11782, 12620, 32354, 1295, 10, 12654, 238, 4488, 118664, 1238, 4904, 142, 3949, 3742, 101966, 10821, 66211, 100761, 194583, 10176, 4785, 111, 39580, 133, 3688, 831, 48903, 3249, 47, 99, 12638, 29954, 181135, 11853, 759, 18151 ]
[ 0.192626953125, 0.286376953125, 0.1798095703125, 0.0833740234375, 0.054840087890625, 0.2008056640625, 0.0911865234375, 0.09375, 0.2476806640625, 0.09765625, 0.1826171875, 0.009002685546875, 0.0152435302734375, 0.1300048828125, 0.165771484375, 0.07177734375, 0.21484375, 0.1166992187...
embed
56164089_c0
56164089
fsharp
0
Title: Count unique in a Deedle Series Problem title: Count unique in a Deedle Series Tags: f%23, deedle Problem: Count unique in a Deedle Series I want to have an overview of a Series in my dataframe, something like pandas' unique values counting. I don't know if there's a built-in function for that. So far i've done ...
Count unique in a Deedle Series Count unique in a Deedle Series f%23 deedle Count Deedle Series s:Deedle.Series s.Values Seq.distinct Seq.length value1 value2 Count unique in a Deedle Series I want to have an overview of a Series in my dataframe, something like pandas' unique values counting. I don't know if there's a ...
[ 0.007568359375, 0.00738525390625, 0.0205078125, -0.0159912109375, -0.0002498626708984375, -0.025390625, -0.006500244140625, -0.006927490234375, 0.01043701171875, -0.0047607421875, -0.028076171875, 0.0228271484375, 0.020751953125, 0.0146484375, 0.01416015625, 0.0072021484375, -0.00506...
[ 108210, 36998, 23, 262, 297, 133, 64876, 10, 1238, 3949, 3742, 8, 91, 4657, 138724, 42272, 21049, 864, 38893, 23986, 34292, 304, 3444, 765, 142, 645, 22751, 2053, 160328, 2652, 1124, 142424, 54529, 214, 88303, 73, 32354, 2060, 2046, 10193...
[ 0.21044921875, 0.2919921875, 0.0772705078125, 0.1280517578125, 0.1822509765625, 0.1790771484375, 0.210693359375, 0.0260162353515625, 0.040374755859375, 0.030517578125, 0.1285400390625, 0.07623291015625, 0.04327392578125, 0.05596923828125, 0.1707763671875, 0.089599609375, 0.0676269531...
embed
35206010_c1
35206010
fsharp
1
").Replace("D","DOD").Replace("F","FOF").Replace("G","GOG").Replace("H","HOH").Replace("J","JOJ").Replace("K","KOK").Replace("L","LOL").Replace("Z","ZOZ").Replace("X","XOX").Replace("C","COC").Replace("V","VOV").Replace("B","Bob").Replace("N","Non").Replace("M","Mom").ToLower() myWord "ball" F# Interactive: val it : st...
").Replace("D","DOD").Replace("F","FOF").Replace("G","GOG").Replace("H","HOH").Replace("J","JOJ").Replace("K","KOK").Replace("L","LOL").Replace("Z","ZOZ").Replace("X","XOX").Replace("C","COC").Replace("V","VOV").Replace("B","Bob").Replace("N","Non").Replace("M","Mom").ToLower() myWord "ball" F# Interactive: val it : st...
[ -0.01531982421875, -0.015869140625, 0.003387451171875, 0.0234375, 0.003753662109375, 0.01239013671875, 0.00933837890625, 0.00182342529296875, 0.00970458984375, 0.0108642578125, 0.00909423828125, 0.00897216796875, 0.01141357421875, 0.01129150390625, 0.0015411376953125, -0.00582885742187...
[ 44, 194, 4332, 23935, 397, 830, 58, 13223, 51029, 919, 51980, 724, 19930, 841, 17933, 1375, 26598, 605, 9092, 866, 17014, 1511, 21697, 1542, 61887, 9688, 441, 856, 109447, 571, 3522, 839, 59881, 594, 306, 7763, 15363, 6488, 759, 164805, ...
[ 0.03961181640625, 0.09722900390625, 0.1468505859375, 0.2125244140625, 0.172607421875, 0.010101318359375, 0.03271484375, 0.1431884765625, 0.017608642578125, 0.1807861328125, 0.107177734375, 0.1312255859375, 0.1077880859375, 0.111328125, 0.0726318359375, 0.149169921875, 0.116455078125,...
embed
71409058_c1
71409058
fsharp
1
def do_get(self, context, ticket): key = ast.literal_eval(ticket.ticket.decode()) if key not in self.flights: return None reader = pyarrow.ipc.RecordBatchReader().from_batches(self.flights[key].schema, pyarrow.Table.to_batches(self.flights[key])) return pyarrow.flight.RecordBatchStream(reader) Code signals: Apache, Ar...
def do_get(self, context, ticket): key = ast.literal_eval(ticket.ticket.decode()) if key not in self.flights: return None reader = pyarrow.ipc.RecordBatchReader().from_batches(self.flights[key].schema, pyarrow.Table.to_batches(self.flights[key])) return pyarrow.flight.RecordBatchStream(reader) Code signals: Apache, Ar...
[ 0.0113525390625, -0.00384521484375, 0.027099609375, -0.006683349609375, -0.006103515625, -0.024658203125, 0.0191650390625, -0.002716064453125, 0.0030517578125, -0.00201416015625, -0.00946044921875, 0.002716064453125, -0.01202392578125, 0.0033721923828125, -0.0003299713134765625, -0.016...
[ 8, 420, 54, 3794, 39379, 43701, 99126, 2077, 22799, 2203, 271, 39798, 289, 1405, 149562, 112, 40899, 959, 15970, 20016, 30646, 438, 86, 155255, 123034, 15555, 57095, 32271, 257, 31345, 161063, 2848, 19770, 2886, 188, 115061, 1283, 28864, 26...
[ 0.1033935546875, 0.053375244140625, 0.114013671875, 0.1754150390625, 0.1724853515625, 0.286376953125, 0.26513671875, 0.010711669921875, 0.2205810546875, 0.0216522216796875, 0.09747314453125, 0.068603515625, 0.026397705078125, 0.1771240234375, 0.2442626953125, 0.1224365234375, 0.15930...
embed
53255953_c0
53255953
fsharp
0
Title: Evaluate a list of computation expression values Problem title: Evaluate a list of computation expression values Tags: f%23 Problem: Evaluate a list of computation expression values What's a good way to evaluate a list of computation expression values into the corresponding list of values? Let's say my computati...
Evaluate a list of computation expression values Evaluate a list of computation expression values f%23 Evaluate x::xs y::ys Evaluate a list of computation expression values What's a good way to evaluate a list of computation expression values into the corresponding list of values? Let's say my computation expression ty...
[ -0.01556396484375, 0.01214599609375, 0.00927734375, 0.0048828125, 0.005401611328125, 0.006256103515625, 0.0247802734375, 0.007720947265625, 0.021728515625, -0.023681640625, -0.004058837890625, 0.0274658203125, 0.047119140625, 0.01043701171875, 0.0108642578125, -0.0166015625, -0.01013...
[ 151228, 67, 5303, 111, 181135, 1363, 125195, 142424, 1238, 3949, 3742, 1022, 425, 7, 113, 4778, 4127, 3917, 47, 151575, 13, 3934, 42518, 10644, 276, 11, 149016, 2965, 33022, 32354, 5809, 903, 1810, 195625, 5844, 1286, 318, 184 ]
[ 0.235595703125, 0.095947265625, 0.164794921875, 0.03131103515625, 0.1461181640625, 0.044830322265625, 0.203857421875, 0.1875, 0.09765625, 0.06927490234375, 0.1419677734375, 0.0650634765625, 0.071044921875, 0.04779052734375, 0.0908203125, 0.129150390625, 0.0693359375, 0.064575195312...
embed
35690796_c0
35690796
fsharp
0
Title: F#: how to define a function to add up 2 floats? Specify &quot;Float&quot; in function signature? Problem title: F#: how to define a function to add up 2 floats? Specify &quot;Float&quot; in function signature? Tags: definition, inline, f%23, function Problem: F#: how to define a function to add up 2 floats? Spe...
F#: how to define a function to add up 2 floats? Specify &quot;Float&quot; in function signature? F#: how to define a function to add up 2 floats? Specify &quot;Float&quot; in function signature? definition inline f%23 function Specify Float a:int b:int F#: how to define a function to add up 2 floats? Specify "Float" i...
[ 0.0026397705078125, -0.005615234375, 0.00933837890625, -0.003936767578125, 0.008056640625, -0.001190185546875, 0.005218505859375, -0.01361083984375, 0.01214599609375, 0.020263671875, 0.0250244140625, -0.00543212890625, -0.007293701171875, 0.002197265625, 0.02880859375, 0.00069808959960...
[ 563, 4904, 3642, 61924, 32354, 15190, 1257, 116, 21917, 9821, 24990, 40383, 919, 365, 257, 138256, 47, 80934, 23, 2256, 1238, 3742, 38699, 10, 4288, 876, 177417, 10644, 29458, 53299, 4734, 18, 189534, 56037, 159978, 26518, 52895, 25842, 112...
[ 0.129150390625, 0.2061767578125, 0.055908203125, 0.200927734375, 0.21875, 0.1551513671875, 0.1405029296875, 0.1561279296875, 0.2249755859375, 0.1571044921875, 0.1143798828125, 0.1036376953125, 0.08184814453125, 0.18212890625, 0.1407470703125, 0.1708984375, 0.047332763671875, 0.1810...
embed
31207716_c0
31207716
fsharp
0
Title: Why does the GetType return null in the following scenario (F#) Problem title: Why does the GetType return null in the following scenario (F#) Tags: .net, f%23 Problem: Why does the GetType return null in the following scenario (F#) I have checked the spelling of the namespaces & modules This module is in FSharp...
Why does the GetType return null in the following scenario (F#) Why does the GetType return null in the following scenario (F#) .net f%23 Why GetType Type.GetType Microsoft.FSharp.Core.LanguagePrimitives.IntrinsicFunctions Why does the GetType return null in the following scenario (F#) I have checked the spelling of th...
[ -0.00616455078125, 0.0098876953125, 0.017333984375, 0.0225830078125, -0.01507568359375, -0.00885009765625, 0.015869140625, -0.00360107421875, -0.0126953125, -0.0238037109375, 0.008056640625, 0.0030059814453125, -0.0242919921875, -0.0211181640625, 0.021728515625, 0.01031494140625, 0.0...
[ 44084, 20779, 196707, 30646, 56574, 25632, 106117, 919, 4904, 1179, 1238, 3742, 60457, 724, 126, 7244, 3467, 254, 50886, 10393, 145111, 42991, 33310, 27744, 97249, 10763, 10010, 210716, 88996, 93774, 1181, 191082, 72367, 563, 86685, 9069, 21130...
[ 0.09991455078125, 0.1806640625, 0.3134765625, 0.1656494140625, 0.2186279296875, 0.072021484375, 0.1363525390625, 0.0643310546875, 0.1597900390625, 0.1524658203125, 0.045867919921875, 0.1396484375, 0.23486328125, 0.0657958984375, 0.111328125, 0.046356201171875, 0.113037109375, 0.088...
embed
7288719_c0
7288719
fsharp
0
Title: F# confusing output Problem title: F# confusing output Tags: f%23 Problem: F# confusing output I'm an F# beginner. I ran this code: let printMsg() = let msg = "Important" printfn "%s" msg let innerMsgChange() = let msg = "Very Important" printfn "%s" msg printfn "%s" msg innerMsgChange() printfn "%s" msg printMs...
F# confusing output F# confusing output f%23 Important Very F# confusing output I'm an F# beginner. I ran this code: I expected that text output would be in this sequence: or this but I got this it seems that these functions don't comply with code execution order. Why is that, am I missing something?
[ 0.01068115234375, -0.007415771484375, -0.01043701171875, 0.0341796875, 0.0185546875, 0.01385498046875, 0.005950927734375, 0.001556396484375, -0.0017852783203125, 0.03271484375, 0.00189971923828125, 0.01275634765625, -0.002899169921875, 0.006927490234375, 0.0302734375, 0.01513671875, ...
[ 563, 4904, 55681, 6953, 140992, 1238, 3949, 3742, 162054, 99342, 9842, 1679, 13028, 903, 18151, 84751, 7986, 23, 40, 944, 3956, 707, 37202, 6097, 32354, 7, 2301, 18, 9969, 538, 678, 71924, 1830, 12989, 44084, 132283 ]
[ 0.1488037109375, 0.2139892578125, 0.1644287109375, 0.09722900390625, 0.2166748046875, 0.1180419921875, 0.049957275390625, 0.1552734375, 0.138427734375, 0.073486328125, 0.026031494140625, 0.04156494140625, 0.0826416015625, 0.038604736328125, 0.12890625, 0.133544921875, 0.1541748046875...
embed
7585917_c0
7585917
fsharp
0
Title: List of Records in F#? Problem title: List of Records in F#? Tags: f%23, functional-programming, list, records Problem: List of Records in F#? How do you work with a List of Records in F#? How would you even pass that as an argument in a function? I want to do something like this: type Car = { Color : string; Ma...
List of Records in F#? List of Records in F#? f%23 functional-programming list records List Records Car Color Make List.filter x.Color car1 Toyota car2 Ford List of Records in F#? How do you work with a List of Records in F#? How would you even pass that as an argument in a function? I want to do something like this: I...
[ 0.0086669921875, -0.0072021484375, 0.0030059814453125, 0.000408172607421875, -0.002960205078125, 0.005157470703125, -0.022705078125, 0.0166015625, 0.0064697265625, -0.000843048095703125, -0.0146484375, -0.00396728515625, -0.01171875, 0.0040283203125, 0.00579833984375, 0.003448486328125...
[ 32036, 111, 89916, 23, 563, 4904, 32, 1238, 3949, 3742, 123309, 28966, 5303, 115923, 3980, 51193, 26176, 120337, 1022, 1484, 2258, 418, 38348, 304, 17652, 11249, 4488, 678, 10, 27875, 237, 142, 10750, 32354, 3444, 3871, 3917, 14192, 450, ...
[ 0.1624755859375, 0.1192626953125, 0.205810546875, 0.08648681640625, 0.1522216796875, 0.2177734375, 0.016204833984375, 0.09423828125, 0.0003662109375, 0.06597900390625, 0.12353515625, 0.082275390625, 0.1339111328125, 0.1927490234375, 0.1513671875, 0.129150390625, 0.0614013671875, 0....
embed
460766_c1
460766
fsharp
1
' Value Restriction ' error, and I can't see any way out. (Removing the # solves the problem, but I'd like to avoid having to write the same thing for lists, seqs, arrays etc.) [<Measure>] type km //define a unit of measure let someFloatFn x = x + 1.2 //this is a function which takes 'vanilla' floats let MapSeqToNonUn...
' Value Restriction ' error, and I can't see any way out. (Removing the # solves the problem, but I'd like to avoid having to write the same thing for lists, seqs, arrays etc.) [<Measure>] type km //define a unit of measure let someFloatFn x = x + 1.2 //this is a function which takes 'vanilla' floats let MapSeqToNonUn...
[ -0.0087890625, 0.025634765625, 0.003662109375, -0.022216796875, 0.0174560546875, -0.0262451171875, -0.0025634765625, -0.010986328125, 0.027587890625, -0.00628662109375, -0.0269775390625, 0.01336669921875, -0.00140380859375, -0.006103515625, 0.017333984375, 0.002471923828125, -0.00325...
[ 190060, 853, 7655, 10763, 242, 18499, 831, 18, 1957, 3917, 1810, 432, 468, 86869, 2967, 1884, 71864, 33022, 5701, 5303, 40, 864, 10298, 6696, 11, 56851, 10644, 1785, 64552, 25072, 111, 72350, 2633, 3060, 365, 257, 919, 19, 1022, 997, 34...
[ 0.253662109375, 0.128662109375, 0.232666015625, 0.1417236328125, 0.048065185546875, 0.26171875, 0.05926513671875, 0.041412353515625, 0.10791015625, 0.09063720703125, 0.16015625, 0.013885498046875, 0.105224609375, 0.0216064453125, 0.01324462890625, 0.006561279296875, 0.0670166015625, ...
embed
5346514_c0
5346514
fsharp
0
Title: How do I use function parameter as literal for pattern matching in F#? Problem title: How do I use function parameter as literal for pattern matching in F#? Tags: f%23 Problem: How do I use function parameter as literal for pattern matching in F#? How do I write a match function that takes two strings and compar...
How do I use function parameter as literal for pattern matching in F#? How do I use function parameter as literal for pattern matching in F#? f%23 How Literal How do I use function parameter as literal for pattern matching in F#? How do I write a match function that takes two strings and compares them with each other? ...
[ -0.0186767578125, -0.0089111328125, -0.01141357421875, 0.003936767578125, -0.01068115234375, -0.01953125, -0.004486083984375, 0.0091552734375, -0.00096893310546875, -0.00872802734375, 0.020263671875, -0.0074462890625, -0.00506591796875, -0.010009765625, 0.0186767578125, -0.009704589843...
[ 11249, 4527, 32354, 171859, 237, 15659, 289, 103510, 14858, 214, 563, 4904, 54, 87, 100, 23, 1238, 3949, 3742, 135940, 141, 33022, 51776, 6626, 79315, 69101, 678, 12638, 3789, 5036, 765, 959, 4488, 11522, 3917 ]
[ 0.061065673828125, 0.109375, 0.211669921875, 0.231689453125, 0.0704345703125, 0.1719970703125, 0.1239013671875, 0.189208984375, 0.241455078125, 0.052093505859375, 0.1221923828125, 0.199951171875, 0.013702392578125, 0.0350341796875, 0.023468017578125, 0.0213775634765625, 0.0791015625,...
embed
38420031_c0
38420031
fsharp
0
Title: Debug F# Type Provider build Problem title: Debug F# Type Provider build Tags: type-providers, f%23, debugging, compilation Problem: Debug F# Type Provider build I can debug my type provider's design time consumption by starting another Visual Studio instance then loading the debug symbols and attaching to the i...
Debug F# Type Provider build Debug F# Type Provider build type-providers f%23 debugging compilation Debug Type Provider Debug F# Type Provider build I can debug my type provider's design time consumption by starting another Visual Studio instance then loading the debug symbols and attaching to the instance consuming th...
[ 0.0137939453125, 0.029296875, -0.00640869140625, 0.006561279296875, -0.004425048828125, 0.00433349609375, -0.0125732421875, 0.0189208984375, 0.004364013671875, -0.018310546875, 0.0174560546875, -0.000705718994140625, 0.033203125, 0.01312255859375, 0.0155029296875, 0.01434326171875, -...
[ 262, 85779, 563, 4904, 60457, 123089, 45367, 42, 10644, 93136, 1238, 3742, 8, 978, 98352, 831, 81450, 4331, 1733, 18588, 254, 72134, 15700, 73372, 22968, 110527, 72367, 26582, 243, 934, 18303, 9433, 114864, 7279, 36356, 38496, 29954, 645, 1...
[ 0.1470947265625, 0.27685546875, 0.0933837890625, 0.176513671875, 0.2161865234375, 0.171630859375, 0.1820068359375, 0.0189361572265625, 0.203125, 0.1470947265625, 0.048004150390625, 0.096435546875, 0.1661376953125, 0.1766357421875, 0.08935546875, 0.0232696533203125, 0.216552734375, ...
embed
32506203_c0
32506203
fsharp
0
Title: gettings attributes of f in a bind Problem title: gettings attributes of f in a bind Tags: computation-expression, f%23 Problem: gettings attributes of f in a bind I have a bit of code in a workflow where I'd like to get the attributes to a function the expression is this let! accounts = _accounts() and in my bi...
gettings attributes of f in a bind gettings attributes of f in a bind computation-expression f%23 _accounts this.Bind f.GetType GetCustomAttributes gettings attributes of f in a bind I have a bit of code in a workflow where I'd like to get the attributes to a function the expression is this and in my bind I have this T...
[ -0.020263671875, -0.000705718994140625, -0.0140380859375, -0.00653076171875, -0.01129150390625, -0.00927734375, 0.018798828125, 0.0089111328125, -0.000194549560546875, -0.0296630859375, 0.003509521484375, 0.00665283203125, -0.01287841796875, 0.027099609375, -0.001800537109375, 0.011291...
[ 20949, 150380, 90, 111, 1238, 23, 68557, 7, 10, 181135, 204629, 3949, 3742, 213499, 903, 571, 7250, 724, 126, 196707, 20779, 223, 5928, 28848, 191145, 4785, 18151, 118664, 1884, 2046, 32354, 125195, 6528, 70, 33636, 54529, 4266, 43257, 1099...
[ 0.1513671875, 0.241943359375, 0.1236572265625, 0.09332275390625, 0.20263671875, 0.1044921875, 0.261962890625, 0.03271484375, 0.03173828125, 0.1461181640625, 0.1639404296875, 0.024078369140625, 0.1392822265625, 0.2288818359375, 0.09375, 0.06988525390625, 0.177001953125, 0.0092468261...
embed
31342743_c0
31342743
fsharp
0
Title: VS F# canopy test adding folder Problem title: VS F# canopy test adding folder Tags: web-testing, f%23, visual-studio-2013 Problem: VS F# canopy test adding folder I want to ask you, if it´s somehow possible, to add folder, to sort out Test´s a little bit.. When i am doing in C# parts, there is normally option r...
VS F# canopy test adding folder VS F# canopy test adding folder web-testing f%23 visual-studio-2013 visual-studio-2013 VS F# canopy test adding folder I want to ask you, if it´s somehow possible, to add folder, to sort out Test´s a little bit.. When i am doing in C# parts, there is normally option In F# case, it looks ...
[ -0.0003108978271484375, 0.00872802734375, -0.01318359375, -0.004608154296875, -0.01019287109375, 0.0018157958984375, -0.000885009765625, 0.00579833984375, -0.009765625, 0.00726318359375, 0.00186920166015625, 0.01220703125, -0.00689697265625, 0.0164794921875, 0.0198974609375, -0.0064697...
[ 44160, 563, 4904, 831, 2146, 53, 3034, 154107, 78303, 1467, 6954, 1238, 3742, 21176, 52629, 74790, 26458, 7722, 47, 15190, 12096, 8647, 10176, 313, 63920, 3638, 35829, 33342, 132283, 442, 17686, 5, 88898, 6863, 20697, 70425, 29806, 28282, 3...
[ 0.2008056640625, 0.1424560546875, 0.2071533203125, 0.0936279296875, 0.15576171875, 0.04974365234375, 0.1939697265625, 0.1077880859375, 0.262451171875, 0.0277252197265625, 0.143798828125, 0.0650634765625, 0.0792236328125, 0.1256103515625, 0.1248779296875, 0.1243896484375, 0.0049438476...
embed
13277773_c0
13277773
fsharp
0
Title: Compose immutable F# map of list of strings Problem title: Compose immutable F# map of list of strings Tags: c%23, dictionary, idioms, f%23 Problem: Compose immutable F# map of list of strings In C# I could build a Dictionary<string, List<string>> pretty easy. If I was reading through a large database of items I...
Compose immutable F# map of list of strings Compose immutable F# map of list of strings c%23 dictionary idioms f%23 Compose Dictionary List dict.ContainsKey dict.add Map Compose immutable F# map of list of strings In C# I could build a Dictionary<string, List<string>> pretty easy. If I was reading through a large datab...
[ 0.0034332275390625, 0.01239013671875, 0.006866455078125, 0.01416015625, -0.0230712890625, -0.006866455078125, 0.0244140625, 0.01251220703125, 0.0108642578125, 0.00433349609375, 0.007080078125, 0.000827789306640625, 0.01446533203125, 0.0322265625, -0.0194091796875, 0.0107421875, -0.00...
[ 15612, 8364, 566, 561, 22819, 563, 4904, 22288, 111, 5303, 79315, 3742, 45, 10763, 6635, 13373, 28016, 1238, 147638, 32036, 61669, 25500, 162429, 4028, 42719, 313, 5809, 45367, 91693, 23468, 16454, 8305, 63399, 55769, 3642, 54, 903, 23, 678...
[ 0.177734375, 0.1116943359375, 0.050140380859375, 0.1246337890625, 0.1427001953125, 0.1419677734375, 0.1988525390625, 0.2071533203125, 0.056884765625, 0.149658203125, 0.201171875, 0.046112060546875, 0.0223388671875, 0.1170654296875, 0.01141357421875, 0.1046142578125, 0.0919189453125, ...
embed
66257069_c1
66257069
fsharp
1
Is it somehow possible to get the exact version number of F#? Or, at least, to infer it from the F# Interactive version number? E.g.: Microsoft (R) F# Interactive version 10.10.0.0 for F# 4.7 Copyright (c) Microsoft Corporation. All Rights Reserved. vs Microsoft (R) F# Interactive version 10.9.1.0 for F# 4.7 Copyright...
Is it somehow possible to get the exact version number of F#? Or, at least, to infer it from the F# Interactive version number? E.g.: Microsoft (R) F# Interactive version 10.10.0.0 for F# 4.7 Copyright (c) Microsoft Corporation. All Rights Reserved. vs Microsoft (R) F# Interactive version 10.9.1.0 for F# 4.7 Copyright...
[ -0.0223388671875, 0.00433349609375, 0.0296630859375, -0.0145263671875, -0.00102996826171875, 0.009521484375, -0.01531982421875, 0.00836181640625, 0.00029754638671875, 0.0361328125, -0.0169677734375, -0.00115966796875, -0.0167236328125, 0.01708984375, 0.0220947265625, 0.004913330078125,...
[ 209303, 7722, 47, 2046, 70, 24763, 11389, 14012, 111, 563, 4904, 19713, 53498, 5337, 71232, 7244, 1052, 209, 10179, 99929, 1398, 966, 4189, 238, 84829, 3164, 38927, 62713, 20209, 38331, 102107, 35829, 37772, 59720, 17311, 35509, 62952, 56776,...
[ 0.08367919921875, 0.118896484375, 0.02093505859375, 0.111083984375, 0.03076171875, 0.1416015625, 0.2274169921875, 0.160888671875, 0.01312255859375, 0.146240234375, 0.25830078125, 0.0059814453125, 0.153076171875, 0.135498046875, 0.1614990234375, 0.1337890625, 0.0760498046875, 0.1004...
embed
11609089_c0
11609089
fsharp
0
Title: Waiting on the cancellation of an asynchronous workflow Problem title: Waiting on the cancellation of an asynchronous workflow Tags: asynchronous, f%23, concurrency Problem: Waiting on the cancellation of an asynchronous workflow The Cancel member of a CancellationTokenSource object "communicates a request for c...
Waiting on the cancellation of an asynchronous workflow Waiting on the cancellation of an asynchronous workflow asynchronous f%23 concurrency Waiting Cancel CancellationTokenSource Waiting on the cancellation of an asynchronous workflow The Cancel member of a CancellationTokenSource object "communicates a request for c...
[ 0.0234375, 0.01611328125, -0.002899169921875, -0.01214599609375, 0.00031280517578125, -0.0164794921875, 0.00494384765625, -0.014892578125, 0.0042724609375, -0.00159454345703125, -0.01190185546875, 0.005615234375, -0.0103759765625, 0.0096435546875, 0.01348876953125, -0.0125732421875, ...
[ 175254, 214, 98, 126136, 1363, 10, 12654, 101966, 4488, 118664, 1238, 3949, 3742, 108636, 982, 80392, 57860, 7763, 1098, 211235, 32786, 36746, 127219, 50336, 100, 41591, 26950, 11476, 136, 90820, 40485, 24189, 140528, 131527, 35863, 11675, 2626...
[ 0.241455078125, 0.05316162109375, 0.136962890625, 0.234130859375, 0.07781982421875, 0.038238525390625, 0.196533203125, 0.15966796875, 0.05682373046875, 0.2264404296875, 0.03131103515625, 0.058685302734375, 0.1741943359375, 0.123779296875, 0.05413818359375, 0.256103515625, 0.075622558...
embed
7977116_c0
7977116
fsharp
0
Title: HashSet `.ToArray()` using F# Problem title: HashSet `.ToArray()` using F# Tags: f%23, hashset, ienumerable Problem: HashSet `.ToArray()` using F# What do I need to do to be able to call .ToArray () for a HashSet? I have tried the following but it did not work: let a = System.Collections.Generic.HashSet () a.Add...
HashSet `.ToArray()` using F# HashSet `.ToArray()` using F# f%23 hashset ienumerable F# HashSet ToArray System.Collections.Generic.HashSet a.Add a.ToArray Not System.Collections.IEnumerable b.ToArray HashSet `.ToArray()` using F# What do I need to do to be able to call .ToArray () for a HashSet? I have tried the follow...
[ -0.0201416015625, 0.00848388671875, 0.01043701171875, -0.006500244140625, -0.0269775390625, -0.00994873046875, -0.0126953125, 0.0040283203125, -0.006011962890625, -0.0264892578125, 0.006744384765625, 0.027099609375, -0.00750732421875, 0.0181884765625, 0.0025482177734375, -0.03393554687...
[ 162087, 294, 126, 5, 7763, 7614, 7092, 132, 17368, 563, 4904, 1238, 3949, 3742, 1556, 127, 3509, 316, 56, 717, 12353, 78457, 8996, 135932, 12259, 6495, 1495, 4028, 11205, 20441, 2606, 876, 3871, 54, 19048, 11782, 100, 37842, 25632, 959, ...
[ 0.2197265625, 0.190185546875, 0.1768798828125, 0.0640869140625, 0.1927490234375, 0.1776123046875, 0.2369384765625, 0.0198822021484375, 0.051727294921875, 0.0946044921875, 0.149169921875, 0.058563232421875, 0.00299072265625, 0.1160888671875, 0.1619873046875, 0.0374755859375, 0.1591796...
embed
63051032_c0
63051032
fsharp
0
Title: Tuple in F# Record Problem title: Tuple in F# Record Tags: f%23 Problem: Tuple in F# Record I am currently in the process of learning F# (only started a few days ago). And I ran into a problem that I can not find an answer to when Googling. How can I define a member or field in a record as a tuple type? I would ...
Tuple in F# Record Tuple in F# Record f%23 Tuple Record Rectangle Coordinates Dimensions Tuple in F# Record I am currently in the process of learning F# (only started a few days ago). And I ran into a problem that I can not find an answer to when Googling. How can I define a member or field in a record as a tuple type?...
[ 0.005157470703125, 0.00113677978515625, 0.018310546875, 0.02197265625, -0.003997802734375, -0.00592041015625, -0.0179443359375, 0.005615234375, 0.00946044921875, 0.0032806396484375, -0.00921630859375, 0.025634765625, 0.00799560546875, 0.0201416015625, -0.003631591796875, 0.002395629882...
[ 1371, 8705, 23, 563, 4904, 54877, 1238, 3949, 3742, 14525, 133, 1311, 43297, 161202, 52080, 2967, 35166, 230596, 11249, 831, 87, 61924, 32786, 707, 44457, 17164, 237, 370, 10644, 28987, 4488, 37105, 9969, 1340, 18499, 43240, 65450, 99726, 3...
[ 0.16455078125, 0.2398681640625, 0.058135986328125, 0.107421875, 0.2073974609375, 0.1956787109375, 0.061767578125, 0.0230865478515625, 0.111083984375, 0.0941162109375, 0.00653076171875, 0.006927490234375, 0.1165771484375, 0.1201171875, 0.0404052734375, 0.04376220703125, 0.037017822265...
embed
38333606_c0
38333606
fsharp
0
Title: How to duck type a method in F# with multiple arguments? Problem title: How to duck type a method in F# with multiple arguments? Tags: duck-typing, f%23 Problem: How to duck type a method in F# with multiple arguments? /// Sets a dependency property let inline setDP (prop: DependencyProperty) (v: obj) (target: ^...
How to duck type a method in F# with multiple arguments? How to duck type a method in F# with multiple arguments? duck-typing f%23 How Sets DependencyProperty SetValue Expected How to duck type a method in F# with multiple arguments? I cannot figure out how to do duck typing for anything except the simplest types. Here...
[ -0.012451171875, 0.003753662109375, 0.00830078125, 0.0064697265625, -0.006378173828125, 0.00872802734375, -0.021728515625, -0.00738525390625, 0.00408935546875, -0.00127410888671875, -0.00445556640625, -0.0240478515625, 0.015625, 0.003173828125, -0.00543212890625, -0.004913330078125, ...
[ 11249, 47, 115, 2594, 10644, 55300, 23, 563, 4904, 678, 48716, 10750, 46280, 214, 1238, 3742, 19943, 262, 26885, 1264, 856, 50770, 60075, 13, 26366, 3642, 11417, 30362, 52895, 18499, 89829, 138, 125195, 4163, 116, 6528, 26950 ]
[ 0.036041259765625, 0.0076904296875, 0.1649169921875, 0.1932373046875, 0.261962890625, 0.1875, 0.0372314453125, 0.1156005859375, 0.1668701171875, 0.07537841796875, 0.1898193359375, 0.2255859375, 0.2208251953125, 0.073974609375, 0.07427978515625, 0.1025390625, 0.1199951171875, 0.0390...
embed
33379585_c2
33379585
fsharp
2
iX, IEn, Target, ProcessTemplates, Process, Templates, ALLFILES, dir_bin, _dir_build_root, dir_mobile, _dir_files, MobileInstall, wix_directories, Seq.map, Seq.reduce, product.name, Foobar, App, product.company, Company, product.description, Description, product.version, product.content, product.application, product.pr...
iX, IEn, Target, ProcessTemplates, Process, Templates, ALLFILES, dir_bin, _dir_build_root, dir_mobile, _dir_files, MobileInstall, wix_directories, Seq.map, Seq.reduce, product.name, Foobar, App, product.company, Company, product.description, Description, product.version, product.content, product.application, product.pr...
[ -0.004486083984375, 0.0179443359375, 0.004730224609375, -0.00408935546875, -0.037841796875, 0.019775390625, 0.006927490234375, -0.03759765625, 0.0166015625, 0.037841796875, 0.00421142578125, 0.0010986328125, -0.010986328125, 0.0013580322265625, -0.00089263916015625, 0.020751953125, -...
[ 17, 1542, 4, 87, 7768, 160017, 123996, 159065, 19309, 7, 196631, 58837, 22724, 47138, 5402, 7568, 101, 936, 454, 177149, 148920, 86831, 29822, 19745, 4153, 92621, 148, 4084, 80581, 10484, 503, 864, 62346, 107, 106357, 12996, 11627, 9572, 31...
[ 0.1292724609375, 0.222900390625, 0.08221435546875, 0.13134765625, 0.208740234375, 0.296142578125, 0.199462890625, 0.1966552734375, 0.18017578125, 0.06146240234375, 0.28857421875, 0.1629638671875, 0.2044677734375, 0.1505126953125, 0.1356201171875, 0.17236328125, 0.0556640625, 0.1492...
embed
23403056_c0
23403056
fsharp
0
Title: How to structure class for Couchdb HTTP api? Problem title: How to structure class for Couchdb HTTP api? Tags: c%23, couchdb, f%23, rest Problem: How to structure class for Couchdb HTTP api? I was trying Couch DB api. But unable to structure class structure for it. Like for artist if I am using class to post tha...
How to structure class for Couchdb HTTP api? How to structure class for Couchdb HTTP api? c%23 couchdb f%23 rest How Couchdb HTTP How to structure class for Couchdb HTTP api? I was trying Couch DB api. But unable to structure class structure for it. Like for artist if I am using class to post that will be having Name a...
[ -0.00494384765625, 0.0281982421875, 0.00616455078125, 0.0079345703125, -0.00174713134765625, 0.0205078125, -0.004791259765625, 0.005615234375, -0.0242919921875, -0.0037689208984375, -0.00018215179443359375, -0.01239013671875, -0.019775390625, -0.008544921875, -0.0126953125, -0.00209045...
[ 11249, 47, 45646, 18507, 100, 1311, 12665, 48073, 135913, 31470, 3742, 31816, 206, 1238, 10588, 31577, 57976, 51, 2886, 22104, 1305, 15757, 136, 37340, 44457, 97351, 19441, 101, 532, 65381, 3447, 517, 154107, 1632, 1286, 44841, 28350, 12937, ...
[ 0.1026611328125, 0.0550537109375, 0.263671875, 0.283447265625, 0.05206298828125, 0.10504150390625, 0.197265625, 0.2349853515625, 0.239501953125, 0.174072265625, 0.051239013671875, 0.1329345703125, 0.07696533203125, 0.0059814453125, 0.1129150390625, 0.04754638671875, 0.216552734375, ...
embed
53874904_c1
53874904
fsharp
1
has been authored in the old 1.0 or 1.2 format, please convert it to MSBuild 2003 format.``` Is there any way to read .net standard project files using the Project Cracker library, or will we need to manually parse the file and create the FSharpProjectOptions by hand for our new libraries? Code signals: System.Excepti...
has been authored in the old 1.0 or 1.2 format, please convert it to MSBuild 2003 format.``` Is there any way to read .net standard project files using the Project Cracker library, or will we need to manually parse the file and create the FSharpProjectOptions by hand for our new libraries? Code signals: System.Excepti...
[ -0.04150390625, 0.0245361328125, -0.013671875, -0.0010528564453125, 0.000629425048828125, -0.0145263671875, -0.00823974609375, -0.0269775390625, 0.01446533203125, 0.00592041015625, -0.00518798828125, -0.0159912109375, -0.00872802734375, -0.0213623046875, 0.02099609375, -0.0185546875, ...
[ 42179, 53855, 34635, 9384, 22936, 96760, 16265, 121137, 6052, 2499, 3917, 12301, 5, 1179, 5570, 13452, 102158, 27331, 34734, 11050, 35773, 1294, 23009, 366, 184, 11435, 28282, 93774, 3467, 254, 223353, 39029, 5256, 3535, 10484, 28864, 26073, ...
[ 0.08880615234375, 0.109375, 0.122802734375, 0.1632080078125, 0.023681640625, 0.10601806640625, 0.060577392578125, 0.189697265625, 0.185546875, 0.008575439453125, 0.0611572265625, 0.1788330078125, 0.011932373046875, 0.160888671875, 0.1556396484375, 0.1766357421875, 0.173095703125, 0...
embed
32336439_c0
32336439
fsharp
0
Title: Is there a way to pattern match against DateTime and Nullable&lt;DateTime&gt;? Problem title: Is there a way to pattern match against DateTime and Nullable&lt;DateTime&gt;? Tags: f%23 Problem: Is there a way to pattern match against DateTime and Nullable ? I've tried something like this: type DateResult = | Vali...
Is there a way to pattern match against DateTime and Nullable&lt;DateTime&gt;? Is there a way to pattern match against DateTime and Nullable&lt;DateTime&gt;? f%23 DateTime Nullable DateResult ValidDate NullableDate BlahBlah Is there a way to pattern match against DateTime and Nullable ? I've tried something like this: ...
[ -0.0172119140625, -0.0052490234375, 0.023193359375, 0.005706787109375, -0.015869140625, -0.0235595703125, -0.033203125, 0.002166748046875, 0.0198974609375, -0.0023956298828125, 0.0108642578125, 0.01019287109375, 0.013916015625, 0.009765625, -0.0091552734375, 0.00060272216796875, 0.00...
[ 2071, 2685, 10, 3917, 47, 103510, 14858, 26548, 25512, 70059, 136, 27786, 2661, 1277, 86291, 5386, 1238, 3742, 7, 7136, 25447, 335, 1566, 571, 272, 37842, 1884, 903, 4966, 14602, 959, 4488, 7722, 170198, 45064, 2967 ]
[ 0.03790283203125, 0.0374755859375, 0.040985107421875, 0.10308837890625, 0.05224609375, 0.2489013671875, 0.2408447265625, 0.1925048828125, 0.14697265625, 0.23486328125, 0.1171875, 0.19140625, 0.224853515625, 0.04052734375, 0.0986328125, 0.0731201171875, 0.050872802734375, 0.09228515...
embed
42101532_c0
42101532
fsharp
0
Title: How to get the difference between two dates in F#? Problem title: How to get the difference between two dates in F#? Tags: f%23 Problem: How to get the difference between two dates in F#? Below is my attempt in creating a function that calculates the difference between two dates. let test date = let today = Date...
How to get the difference between two dates in F#? How to get the difference between two dates in F#? f%23 System.InvalidCastException How DateTime.Now DateTime.Parse Convert.ToInt32 Unable System.TimeSpan System.IConvertible How to get the difference between two dates in F#? Below is my attempt in creating a function ...
[ -0.0024261474609375, 0.0016326904296875, -0.01422119140625, 0.0322265625, 0.00872802734375, 0.004241943359375, -0.0081787109375, 0.021484375, 0.0125732421875, -0.0311279296875, -0.01904296875, 0.003753662109375, -0.0177001953125, 0.029296875, 0.002716064453125, -0.00604248046875, -0....
[ 11249, 47, 2046, 70, 60212, 17721, 6626, 112474, 23, 563, 4904, 1238, 3742, 12353, 7013, 174830, 63928, 25512, 70059, 137594, 5, 28636, 1657, 11549, 7763, 18, 6460, 2886, 3180, 191, 41418, 2661, 873, 17336, 81887, 32354, 74481, 36917, 18151...
[ 0.053558349609375, 0.0826416015625, 0.1236572265625, 0.1173095703125, 0.22412109375, 0.1536865234375, 0.155029296875, 0.22412109375, 0.07440185546875, 0.1409912109375, 0.2205810546875, 0.07183837890625, 0.107421875, 0.05499267578125, 0.1160888671875, 0.1259765625, 0.106201171875, 0...
embed
5671271_c0
5671271
fsharp
0
Title: What are advantages and disadvantages of &quot;point free&quot; style in functional programming? Problem title: What are advantages and disadvantages of &quot;point free&quot; style in functional programming? Tags: f%23, pointfree, functional-programming Problem: What are advantages and disadvantages of "point f...
What are advantages and disadvantages of &quot;point free&quot; style in functional programming? What are advantages and disadvantages of &quot;point free&quot; style in functional programming? f%23 pointfree functional-programming What What are advantages and disadvantages of "point free" style in functional programmi...
[ 0.0096435546875, -0.0096435546875, 0.01019287109375, -0.01031494140625, -0.016357421875, -0.007537841796875, -0.004669189453125, 0.00116729736328125, 0.00897216796875, 0.0068359375, -0.0015411376953125, -0.019287109375, -0.006011962890625, 0.01220703125, -0.0294189453125, 0.01635742187...
[ 92940, 7, 136, 6392, 71, 2187, 92674, 38496, 4092, 20623, 123309, 56037, 449, 1238, 3742, 6275, 32087, 28966, 214, 4865, 621, 23, 46876, 6495, 142508, 22223, 6496, 69307, 8306, 143726, 15005, 32354, 10750, 9351, 4552, 34844, 23755, 31347, 4...
[ 0.182373046875, 0.021697998046875, 0.0975341796875, 0.1226806640625, 0.06787109375, 0.1175537109375, 0.06280517578125, 0.1702880859375, 0.2125244140625, 0.2083740234375, 0.2078857421875, 0.1478271484375, 0.0787353515625, 0.0162811279296875, 0.057342529296875, 0.14501953125, 0.1923828...
embed
54428850_c1
54428850
fsharp
1
, but I was wondering whether this is a typical coding practice, or whether whenever I find myself doing something like this, I should hear a voice in my head saying "rollback, rollback!", because I'm violating classical functional programming principles (am I?). I realize this is a case of information hiding and it lo...
, but I was wondering whether this is a typical coding practice, or whether whenever I find myself doing something like this, I should hear a voice in my head saying "rollback, rollback!", because I'm violating classical functional programming principles (am I?). I realize this is a case of information hiding and it lo...
[ 0.0006103515625, 0.0086669921875, 0.00677490234375, 0.005950927734375, 0.0008392333984375, -0.01409912109375, 0.0177001953125, -0.0135498046875, 0.009033203125, 0.00933837890625, 0.0054931640625, -0.00421142578125, -0.0010528564453125, 0.01275634765625, 0.004180908203125, -0.0255126953...
[ 6, 1284, 149016, 36766, 903, 83, 10, 222201, 552, 6238, 41361, 217684, 7413, 35978, 20594, 1884, 5608, 36802, 54479, 10336, 54433, 27722, 12620, 4, 21972, 3890, 54567, 1916, 54704, 123309, 56037, 24702, 1577, 302, 92154, 7225, 4677, 1274, 4...
[ 0.0030517578125, 0.00872802734375, 0.07269287109375, 0.012725830078125, 0.1025390625, 0.03753662109375, 0.00994873046875, 0.1878662109375, 0.1636962890625, 0.1220703125, 0.1541748046875, 0.0782470703125, 0.0511474609375, 0.0606689453125, 0.0576171875, 0.08154296875, 0.069091796875, ...
embed
8522511_c0
8522511
fsharp
0
Title: Accessing an F# Map from inside C# code Problem title: Accessing an F# Map from inside C# code Tags: dictionary, c%23, f%23 Problem: Accessing an F# Map from inside C# code Is there any simple way to access an F# Map from inside C# code? I mean, both C# and F# lists are enumerable so I can iterate an F# list fro...
Accessing an F# Map from inside C# code Accessing an F# Map from inside C# code dictionary c%23 f%23 inside Accessing Map MyMap module.MyMap Accessing an F# Map from inside C# code Is there any simple way to access an F# Map from inside C# code? I mean, both C# and F# lists are enumerable so I can iterate an F# list fr...
[ 0.017333984375, 0.00921630859375, 0.009033203125, -0.01068115234375, -0.00396728515625, -0.006439208984375, -0.00811767578125, 0.00274658203125, 0.003387451171875, -0.044677734375, -0.0020751953125, 0.0198974609375, 0.0096435546875, 0.01239013671875, 0.0157470703125, 0.0035552978515625...
[ 40266, 214, 563, 4904, 42719, 1295, 46132, 313, 18151, 45, 10763, 3742, 1238, 3949, 2646, 166179, 88996, 31852, 8781, 3917, 47, 17203, 142, 136, 5303, 189085, 2661, 831, 8560, 8305, 450, 101758, 189050, 159978, 6044, 17447, 1884, 70, 22288,...
[ 0.1893310546875, 0.04046630859375, 0.1834716796875, 0.2578125, 0.258056640625, 0.1402587890625, 0.2119140625, 0.1094970703125, 0.208740234375, 0.01995849609375, 0.078857421875, 0.10540771484375, 0.0914306640625, 0.01837158203125, 0.130615234375, 0.2181396484375, 0.1622314453125, 0....
embed
38256936_c1
38256936
fsharp
1
Subscribe () = use context = new Context() use subscriber = sub context "tcp://localhost:5563" |> connect subscriber Socket.setOption subscriber (ZMQ.CONFLATE, 1) [ ""B ] |> subscribe subscriber while true do let contents = s_recv subscriber fib 42 contents |> printfn "%A" EXIT_SUCCESS [<EntryPoint>] let main argv = fu...
Subscribe () = use context = new Context() use subscriber = sub context "tcp://localhost:5563" |> connect subscriber Socket.setOption subscriber (ZMQ.CONFLATE, 1) [ ""B ] |> subscribe subscriber while true do let contents = s_recv subscriber fib 42 contents |> printfn "%A" EXIT_SUCCESS [<EntryPoint>] let main argv = fu...
[ 0.0145263671875, 0.0216064453125, -0.005279541015625, 0.0458984375, 0.006317138671875, -0.0164794921875, 0.00347900390625, 0.006500244140625, 0.01177978515625, -0.033447265625, -0.005218505859375, 0.0291748046875, 0.01123046875, 0.014404296875, -0.0027618408203125, -0.005340576171875, ...
[ 134019, 2203, 4527, 43701, 3525, 1657, 22829, 1614, 34601, 42, 121422, 696, 98908, 40294, 28565, 15748, 2740, 37067, 1061, 27853, 3509, 39029, 1511, 594, 2737, 77980, 69466, 35746, 4879, 571, 12960, 29568, 2633, 10941, 91, 31688, 334, 809, ...
[ 0.366943359375, 0.082275390625, 0.1580810546875, 0.27685546875, 0.09765625, 0.1092529296875, 0.263427734375, 0.224365234375, 0.304443359375, 0.122314453125, 0.1375732421875, 0.043792724609375, 0.097900390625, 0.1453857421875, 0.09942626953125, 0.196044921875, 0.00103759765625, 0.23...
embed
49062599_c0
49062599
fsharp
0
Title: How to make FsCheck generate random strings that respect MaxLengthAttribute? Problem title: How to make FsCheck generate random strings that respect MaxLengthAttribute? Tags: fscheck, f%23, .net Problem: How to make FsCheck generate random strings that respect MaxLengthAttribute? Is it possible for FsCheck to ge...
How to make FsCheck generate random strings that respect MaxLengthAttribute? How to make FsCheck generate random strings that respect MaxLengthAttribute? fscheck f%23 .net How FsCheck MaxLengthAttribute Person System.ComponentModel.DataAnnotations.MaxLength FirstName LastName How to make FsCheck generate random strings...
[ -0.003448486328125, 0.0101318359375, -0.006622314453125, 0.005401611328125, -0.01080322265625, 0.01397705078125, 0.0081787109375, -0.0013885498046875, -0.0012054443359375, -0.02392578125, 0.00034332275390625, 0.0034332275390625, 0.00701904296875, 0.0157470703125, 0.01416015625, -0.0218...
[ 11249, 3249, 563, 7, 202567, 139392, 96759, 79315, 15072, 9920, 5267, 449, 927, 28848, 191145, 1238, 78292, 3742, 6, 1179, 15270, 12353, 54137, 140290, 10869, 71346, 23972, 163612, 21672, 7722, 115923, 89536, 17164, 10644 ]
[ 0.035400390625, 0.042388916015625, 0.139404296875, 0.1190185546875, 0.301513671875, 0.153076171875, 0.18017578125, 0.20654296875, 0.1282958984375, 0.174072265625, 0.0738525390625, 0.1087646484375, 0.09368896484375, 0.061126708984375, 0.1614990234375, 0.111572265625, 0.26806640625, ...
embed
56597149_c0
56597149
fsharp
0
Title: Unexpected keyword &#x27;member&#x27; in definition, in a F# module Problem title: Unexpected keyword &#x27;member&#x27; in definition, in a F# module Tags: f%23 Problem: Unexpected keyword 'member' in definition, in a F# module Trying to get optional parameters working in a module I tried changing the let to me...
Unexpected keyword &#x27;member&#x27; in definition, in a F# module Unexpected keyword &#x27;member&#x27; in definition, in a F# module f%23 Unexpected Kingdom Rule this.Rule Unexpected keyword 'member' in definition, in a F# module Trying to get optional parameters working in a module I tried changing the let to membe...
[ 0.01556396484375, 0.002471923828125, 0.01177978515625, -0.00067901611328125, -0.001220703125, -0.000518798828125, 0.0067138671875, -0.000904083251953125, -0.00933837890625, -0.01153564453125, -0.004974365234375, -0.00130462646484375, 0.017822265625, 0.007232666015625, 0.0234375, -0.016...
[ 992, 83613, 13, 89829, 166117, 3768, 39, 27417, 80934, 563, 4904, 88996, 3742, 117604, 139118, 903, 26951, 133, 35829, 171859, 20697, 151134, 2633, 32786, 201939, 18499, 14315, 6002, 86531, 12745, 959, 61924, 10, 23 ]
[ 0.0860595703125, 0.1019287109375, 0.09814453125, 0.09112548828125, 0.244873046875, 0.090087890625, 0.1263427734375, 0.2734375, 0.19287109375, 0.0855712890625, 0.1839599609375, 0.2003173828125, 0.032501220703125, 0.196044921875, 0.17333984375, 0.0809326171875, 0.1201171875, 0.046264...
embed
76366498_c0
76366498
fsharp
0
Title: Why does let binding become internal mutable field instead of private readonly one? Problem title: Why does let binding become internal mutable field instead of private readonly one? Tags: f%23 Problem: Why does let binding become internal mutable field instead of private readonly one? type Foo(bar: int) = let _...
Why does let binding become internal mutable field instead of private readonly one? Why does let binding become internal mutable field instead of private readonly one? f%23 Why Foo _bar Serializable CompilationMapping SourceConstructFlags.ObjectType Why does let binding become internal mutable field instead of private ...
[ 0.007659912109375, 0.01422119140625, -0.00628662109375, -0.00179290771484375, -0.0107421875, 0.02490234375, 0.0096435546875, 0.0026092529296875, 0.000667572021484375, 0.0252685546875, -0.0015869140625, 0.01458740234375, 0.004180908203125, 0.048095703125, 0.01416015625, -0.0244140625, ...
[ 44084, 14602, 2633, 128239, 24209, 70796, 842, 22819, 44457, 64457, 14375, 12301, 191, 538, 1632, 3742, 9572, 31, 1299, 135188, 1418, 2886, 15612, 14, 4613, 26783, 77641, 36716, 3668, 75161, 196707, 193844, 15400, 83 ]
[ 0.1400146484375, 0.042510986328125, 0.122314453125, 0.251953125, 0.1329345703125, 0.2470703125, 0.1514892578125, 0.2210693359375, 0.231689453125, 0.0946044921875, 0.181640625, 0.1710205078125, 0.0946044921875, 0.0596923828125, 0.03204345703125, 0.03387451171875, 0.13134765625, 0.07...
embed
25598394_c0
25598394
fsharp
0
Title: how to divide VS project into different folders for each website Problem title: how to divide VS project into different folders for each website Tags: asp.net-mvc, f%23 Problem: how to divide VS project into different folders for each website I want to have multiple websites within ONE VS 2013 project/solution. ...
how to divide VS project into different folders for each website how to divide VS project into different folders for each website asp.net-mvc f%23 website1 Content Scripts website2 asp.net-mvc how to divide VS project into different folders for each website I want to have multiple websites within ONE VS 2013 project/so...
[ -0.01544189453125, 0.0167236328125, -0.014404296875, 0.00390625, 0.0022125244140625, 0.019775390625, -0.0206298828125, 0.01458740234375, -0.009033203125, -0.006744384765625, -0.005035400390625, -0.0186767578125, 0.004058837890625, 0.020263671875, -0.005767822265625, -0.016357421875, ...
[ 3642, 47, 101637, 44160, 13452, 3934, 12921, 78303, 100, 12638, 4165, 237, 254, 1179, 39, 66357, 1238, 3949, 3742, 418, 70870, 84654, 304, 3444, 765, 48716, 64324, 28032, 31261, 1210, 166589, 20513, 64, 77758, 169581, 63769, 98, 27980, 7, ...
[ 0.1002197265625, 0.0540771484375, 0.242431640625, 0.2489013671875, 0.175537109375, 0.1611328125, 0.189453125, 0.2205810546875, 0.06988525390625, 0.1337890625, 0.169921875, 0.0255279541015625, 0.0841064453125, 0.05999755859375, 0.004608154296875, 0.1533203125, 0.01910400390625, 0.00...
embed
32123577_c0
32123577
fsharp
0
Title: How to define an array of functions of different signature in F# Problem title: How to define an array of functions of different signature in F# Tags: function, f%23, arrays Problem: How to define an array of functions of different signature in F# I would like to be able to use an array of functions along this l...
How to define an array of functions of different signature in F# How to define an array of functions of different signature in F# function f%23 arrays How SomeFunc StringFunc DecimalFunc Dict How to define an array of functions of different signature in F# I would like to be able to use an array of functions along this...
[ 0.017578125, -0.0133056640625, -0.0211181640625, 0.0155029296875, -0.02099609375, -0.022216796875, 0.003509521484375, -0.0166015625, 0.0125732421875, 0.0238037109375, -0.0145263671875, -0.0023193359375, -0.01446533203125, 0.0142822265625, 0.0164794921875, -0.00653076171875, 0.0071716...
[ 11249, 61924, 10298, 53, 111, 32354, 7, 12921, 138256, 23, 563, 4904, 1238, 3949, 3742, 4778, 31384, 97249, 23351, 49132, 2749, 60897, 18, 47, 142, 2806, 1884, 19048, 4527, 33233, 903, 13315, 36510, 6528, 35604, 18151 ]
[ 0.047119140625, 0.2110595703125, 0.1953125, 0.1824951171875, 0.0985107421875, 0.2130126953125, 0.0447998046875, 0.2196044921875, 0.2098388671875, 0.054718017578125, 0.134765625, 0.2071533203125, 0.1005859375, 0.06134033203125, 0.1702880859375, 0.0919189453125, 0.06500244140625, 0.1...
embed
7487361_c0
7487361
fsharp
0
Title: Is it possible to implement F#&#x27;s infrastructure for Units of Measurement in Scala? Problem title: Is it possible to implement F#&#x27;s infrastructure for Units of Measurement in Scala? Tags: units-of-measurement, f%23, types, scala, language-design Problem: Is it possible to implement F#'s infrastructure f...
Is it possible to implement F#&#x27;s infrastructure for Units of Measurement in Scala? Is it possible to implement F#&#x27;s infrastructure for Units of Measurement in Scala? units-of-measurement f%23 types scala language-design Units Measurement Scala Is it possible to implement F#'s infrastructure for Units of Measu...
[ 0.01263427734375, 0.025146484375, 0.01123046875, -0.0162353515625, -0.015625, -0.0225830078125, -0.01904296875, -0.00023651123046875, -0.01043701171875, -0.0113525390625, -0.0145263671875, -0.01190185546875, 0.00592041015625, -0.0111083984375, 0.0096435546875, 0.017822265625, 0.00915...
[ 7722, 29479, 563, 4904, 3768, 150449, 100, 46640, 1215, 11, 56851, 23, 152653, 111, 25072, 4390, 37440, 1238, 3742, 52895, 146232, 46876, 34198, 442, 109923, 5361, 8060, 72350, 5426, 87344, 201939, 10644, 81900, 9969, 7565, 54744, 64457, 5314...
[ 0.1705322265625, 0.17236328125, 0.1492919921875, 0.203857421875, 0.05548095703125, 0.2139892578125, 0.0518798828125, 0.1666259765625, 0.08251953125, 0.140625, 0.1185302734375, 0.05816650390625, 0.1861572265625, 0.040313720703125, 0.158935546875, 0.07794189453125, 0.0914306640625, 0...
embed
30405768_c0
30405768
fsharp
0
Title: FSharp pattern that matches List type Problem title: FSharp pattern that matches List type Tags: f%23, list, pattern-matching Problem: FSharp pattern that matches List type I want to match the object obj1 of type "obj" according to its actual type. The problem is that the type check pattern for list type (the se...
FSharp pattern that matches List type FSharp pattern that matches List type f%23 list pattern-matching FSharp List obj1 System.Array FSharp pattern that matches List type I want to match the object obj1 of type "obj" according to its actual type. The problem is that the type check pattern for list type (the second one ...
[ -0.01116943359375, 0.00830078125, -0.00439453125, -0.0037078857421875, -0.01068115234375, -0.0048828125, -0.03125, 0.0242919921875, 0.00146484375, -0.0091552734375, 0.0240478515625, -0.02294921875, 0.02001953125, -0.0205078125, 0.00396728515625, -0.005340576171875, 0.016357421875, ...
[ 93774, 3467, 254, 103510, 450, 14858, 90, 32036, 10644, 1238, 3742, 5303, 98753, 214, 995, 170, 418, 12353, 7092, 3444, 36746, 3522, 58, 59499, 8561, 2967, 12765, 17932, 27781, 35064, 14602, 959, 563, 4904, 13538, 7077, 126340, 41206, 23389...
[ 0.095703125, 0.17431640625, 0.1485595703125, 0.2281494140625, 0.0433349609375, 0.1954345703125, 0.0899658203125, 0.1734619140625, 0.1883544921875, 0.0853271484375, 0.1087646484375, 0.1707763671875, 0.177734375, 0.03741455078125, 0.119873046875, 0.13232421875, 0.049072265625, 0.0705...
embed
51383256_c0
51383256
fsharp
0
Title: How do I create a list from A to Z in F# Problem title: How do I create a list from A to Z in F# Tags: list, regex, f%23 Problem: How do I create a list from A to Z in F# In F# you can create a list from 1 to 10 using the range operator, but is it possible to use letters from the alphabet to do the same? I have ...
How do I create a list from A to Z in F# How do I create a list from A to Z in F# list regex f%23 A How How do I create a list from A to Z in F# In F# you can create a list from 1 to 10 using the range operator, but is it possible to use letters from the alphabet to do the same? I have been searching for a while and tr...
[ 0.0033721923828125, -0.0137939453125, -0.0001926422119140625, 0.0206298828125, -0.002471923828125, -0.0021514892578125, 0.0048828125, 0.017578125, 0.005645751953125, 0.0015411376953125, 0.0150146484375, 0.006927490234375, 0.0203857421875, 0.0147705078125, -0.00823974609375, -0.00683593...
[ 11249, 54, 87, 28282, 10, 5303, 1295, 62, 47, 567, 23, 563, 4904, 6835, 3355, 1238, 3949, 3742, 360, 831, 106, 209, 17368, 37457, 39933, 7722, 4527, 120820, 229231, 5701, 12960, 31577, 12921, 36272, 10644, 1528, 23009, 16487, 124519, 4677...
[ 0.0753173828125, 0.0284271240234375, 0.043060302734375, 0.173828125, 0.055908203125, 0.21337890625, 0.1285400390625, 0.1859130859375, 0.1571044921875, 0.2034912109375, 0.099609375, 0.1536865234375, 0.2332763671875, 0.1319580078125, 0.1650390625, 0.0775146484375, 0.0633544921875, 0....
embed
5282782_c0
5282782
fsharp
0
Title: In what areas does F# make &quot;absolute no sense in using&quot;? Problem title: In what areas does F# make &quot;absolute no sense in using&quot;? Tags: oop, c%23, f%23, functional-programming Problem: In what areas does F# make "absolute no sense in using"? Don Syme in his SPLASH talk says that F# is NOT inte...
In what areas does F# make &quot;absolute no sense in using&quot;? In what areas does F# make &quot;absolute no sense in using&quot;? oop c%23 f%23 functional-programming In what areas does F# make "absolute no sense in using"? Don Syme in his SPLASH talk says that F# is NOT intended to be a replacement for C# even tho...
[ 0.0036163330078125, 0.0157470703125, 0.00970458984375, -0.01953125, -0.01007080078125, -0.00384521484375, 0.004302978515625, 0.0103759765625, 0.01531982421875, 0.004150390625, -0.0101318359375, -0.000308990478515625, -0.003082275390625, -0.001556396484375, -0.00311279296875, 0.00750732...
[ 360, 58555, 563, 4904, 3249, 98685, 110, 10422, 23, 17368, 32500, 3742, 1238, 123309, 28966, 2367, 2055, 13, 7650, 4843, 282, 170723, 22120, 86725, 179140, 91995, 100, 313, 4537, 130732, 30482, 71062, 159688, 5608, 71864, 158618, 4527, 1286, ...
[ 0.041717529296875, 0.146728515625, 0.1719970703125, 0.2705078125, 0.05328369140625, 0.0657958984375, 0.140380859375, 0.1873779296875, 0.0777587890625, 0.138671875, 0.1005859375, 0.0265350341796875, 0.060302734375, 0.110595703125, 0.1016845703125, 0.02392578125, 0.000030517578125, 0...
embed
72917431_c1
72917431
fsharp
1
' (toEgcList str) (toEgcList sep) ecgStringSplit "Hello world 1" " " |> printfn "%A" // results in ["Hello"; "world"; "1"] ecgStringSplit "‍‍‍" "" |> printfn "%A" // results in ["‍‍‍"] Beyond refactoring this to not use mutable values and such, I'm wondering if I'm missing a much simpler solution to this problem? I'd h...
' (toEgcList str) (toEgcList sep) ecgStringSplit "Hello world 1" " " |> printfn "%A" // results in ["Hello"; "world"; "1"] ecgStringSplit "‍‍‍" "" |> printfn "%A" // results in ["‍‍‍"] Beyond refactoring this to not use mutable values and such, I'm wondering if I'm missing a much simpler solution to this problem? I'd h...
[ -0.00213623046875, 0.000919342041015625, -0.009033203125, 0.01275634765625, -0.0242919921875, 0.01385498046875, -0.01092529296875, -0.003509521484375, 0.0164794921875, -0.01068115234375, -0.0025482177734375, 0.00946044921875, -0.01055908203125, 0.001800537109375, -0.009521484375, -0.00...
[ 242, 188, 647, 177, 238, 154663, 7704, 25040, 50061, 71713, 214, 31923, 4353, 841, 13817, 8999, 106, 28412, 14783, 3949, 284, 50339, 32554, 418, 456, 144810, 903, 842, 22819, 142424, 149016, 132283, 5045, 8781, 42, 29806, 2967, 7520, 313, ...
[ 0.038543701171875, 0.133056640625, 0.0253448486328125, 0.129638671875, 0.1151123046875, 0.1983642578125, 0.1693115234375, 0.176513671875, 0.16552734375, 0.1925048828125, 0.07391357421875, 0.1082763671875, 0.2410888671875, 0.11181640625, 0.2230224609375, 0.1754150390625, 0.10424804687...
embed
37463247_c0
37463247
fsharp
0
Title: Why converting from string to int results in weird value Problem title: Why converting from string to int results in weird value Tags: f%23, int, string Problem: Why converting from string to int results in weird value I'm new to F# and I was having trouble finding the last element of an number-string and conver...
Why converting from string to int results in weird value Why converting from string to int results in weird value f%23 int string string Why Why converting from string to int results in weird value I'm new to F# and I was having trouble finding the last element of an number-string and converting that element to an int....
[ -0.01214599609375, 0.00860595703125, -0.00860595703125, 0.0079345703125, -0.016357421875, 0.0238037109375, -0.0034027099609375, -0.006591796875, 0.01214599609375, 0.0164794921875, 0.01483154296875, -0.00885009765625, -0.02783203125, 0.03564453125, 0.007659912109375, -0.019287109375, ...
[ 44084, 96760, 214, 1295, 79315, 47, 23, 18, 50339, 179459, 34292, 1238, 3742, 563, 4904, 63134, 90791, 4568, 12830, 14012, 91693, 48636, 3444, 2046, 4420, 1031, 18151, 76199, 163, 7218, 91, 831, 26366, 15400, 123087, 107730, 109589, 7464, 7...
[ 0.1302490234375, 0.16455078125, 0.041107177734375, 0.110107421875, 0.24462890625, 0.097412109375, 0.121826171875, 0.1842041015625, 0.119140625, 0.2076416015625, 0.1578369140625, 0.0963134765625, 0.17236328125, 0.08880615234375, 0.1702880859375, 0.030242919921875, 0.028167724609375, ...
embed
43297393_c0
43297393
fsharp
0
Title: Term to call a function with empty parameter Problem title: Term to call a function with empty parameter Tags: terminology, language-design, functional-programming, f%23, .net Problem: Term to call a function with empty parameter In functional programming, what is the correct name to call a function that accepts...
Term to call a function with empty parameter Term to call a function with empty parameter terminology language-design functional-programming f%23 .net Term UnitFunction OperandFunction unit16 registers.A Term to call a function with empty parameter In functional programming, what is the correct name to call a function ...
[ 0.01519775390625, 0.01275634765625, 0.006805419921875, 0.00360107421875, -0.01239013671875, -0.01495361328125, 0.0167236328125, -0.01019287109375, 0.0003948211669921875, 0.0037689208984375, 0.00482177734375, 0.007171630859375, -0.031982421875, -0.00016021728515625, 0.00153350830078125, ...
[ 2994, 39, 47, 11782, 32354, 678, 201505, 171859, 18614, 25443, 46876, 34198, 123309, 28966, 6, 1179, 46640, 97249, 10763, 16556, 2208, 25072, 2485, 68067, 56037, 449, 26785, 9351, 10, 450, 26946, 110, 10750, 4171, 254, 186, 35839, 122925, 5...
[ 0.1484375, 0.0465087890625, 0.07220458984375, 0.20458984375, 0.2430419921875, 0.1409912109375, 0.276611328125, 0.27294921875, 0.062286376953125, 0.0098876953125, 0.037811279296875, 0.039520263671875, 0.1865234375, 0.0457763671875, 0.00054931640625, 0.021392822265625, 0.1575927734375,...
embed
45963534_c0
45963534
fsharp
0
Title: How to declare class with auto property of type list of strings in F#? Problem title: How to declare class with auto property of type list of strings in F#? Tags: c%23-to-f%23, f%23 Problem: How to declare class with auto property of type list of strings in F#? I have trouble to understand how should I define cl...
How to declare class with auto property of type list of strings in F#? How to declare class with auto property of type list of strings in F#? c%23-to-f%23 f%23 How Entity Name List Favorites How to declare class with auto property of type list of strings in F#? I have trouble to understand how should I define class in ...
[ 0.00872802734375, 0.025634765625, 0.0101318359375, 0.0167236328125, -0.03076171875, 0.0069580078125, 0.0206298828125, 0.0045166015625, 0.0029296875, 0.043701171875, -0.005401611328125, 0.005340576171875, -0.010986328125, 0.006317138671875, -0.0033416748046875, 0.0120849609375, 0.0194...
[ 11249, 47, 159978, 18507, 678, 1809, 57266, 10644, 5303, 79315, 23, 563, 4904, 27495, 188, 420, 3742, 1238, 16511, 2481, 15757, 32036, 120254, 90, 111, 28219, 61924, 765, 183871, 15490, 21771, 34292, 183234, 18151, 4734, 95486, 56574, 186 ]
[ 0.056640625, 0.0157928466796875, 0.2021484375, 0.258056640625, 0.1119384765625, 0.2276611328125, 0.2105712890625, 0.187255859375, 0.125244140625, 0.1573486328125, 0.044219970703125, 0.1324462890625, 0.1962890625, 0.05853271484375, 0.09716796875, 0.060028076171875, 0.04986572265625, ...
embed
5393901_c0
5393901
fsharp
0
Title: F# fslex fsyacc mature for production code? Problem title: F# fslex fsyacc mature for production code? Tags: f%23, fslex, fsyacc, maturity Problem: F# fslex fsyacc mature for production code? After reading a 2 year old webpage really ripping fslex/fsyacc, buggy, slow, stupid etc. compared to their OCamel counter...
F# fslex fsyacc mature for production code? F# fslex fsyacc mature for production code? f%23 fslex fsyacc maturity F# fslex fsyacc mature for production code? After reading a 2 year old webpage really ripping fslex/fsyacc, buggy, slow, stupid etc. compared to their OCamel counterparts i wonder what would be ones best b...
[ 0.00579833984375, 0.013427734375, 0.00118255615234375, 0.01348876953125, -0.01226806640625, 0.03515625, 0.0087890625, -0.0057373046875, 0.003662109375, -0.00506591796875, 0.0262451171875, 0.0093994140625, 0.0031585693359375, -0.0054931640625, 0.01190185546875, -0.00762939453125, -0.0...
[ 563, 4904, 1238, 7, 74070, 19834, 10060, 90638, 100, 36049, 18151, 32, 3742, 28206, 2481, 16454, 116, 6602, 10332, 1467, 22469, 6183, 1427, 26783, 17447, 395, 373, 67192, 72803, 110833, 154186, 91888, 11, 7603, 17365, 32195, 2367, 64333, 29...
[ 0.157958984375, 0.21044921875, 0.128662109375, 0.09979248046875, 0.263916015625, 0.1934814453125, 0.1878662109375, 0.2015380859375, 0.109375, 0.1917724609375, 0.18115234375, 0.028900146484375, 0.07452392578125, 0.1923828125, 0.052764892578125, 0.0986328125, 0.1072998046875, 0.10253...
embed
67763766_c1
67763766
fsharp
1
frame = jsonObject.["data"].["Shipments"].["Data"].Children() |> Seq.map (fun jtok -> jtok.ToObject<ApiTypes>()) |> Frame.ofRecords Can I define all in one type, or do I have to define a seperate type for ShipmentContents? I realy apreciate your help! Fiddle here (doesn't work, but for sharing the code) Code signals: ...
frame = jsonObject.["data"].["Shipments"].["Data"].Children() |> Seq.map (fun jtok -> jtok.ToObject<ApiTypes>()) |> Frame.ofRecords Can I define all in one type, or do I have to define a seperate type for ShipmentContents? I realy apreciate your help! Fiddle here (doesn't work, but for sharing the code) Code signals: ...
[ 0.00885009765625, 0.0341796875, -0.01287841796875, 0.0033416748046875, -0.000720977783203125, -0.017822265625, -0.003265380859375, 0.026611328125, -0.01177978515625, 0.00848388671875, -0.0179443359375, -0.0064697265625, -0.01190185546875, -0.0306396484375, 0.021728515625, 0.00891113281...
[ 123789, 2203, 1647, 1681, 46471, 75161, 10135, 78567, 254, 9035, 137989, 102656, 982, 503, 864, 62346, 16498, 6448, 7763, 1434, 196707, 42557, 13, 4390, 4332, 32271, 4171, 61924, 756, 23, 1632, 10644, 143870, 8294, 674, 11935, 25352, 4358, ...
[ 0.294189453125, 0.053192138671875, 0.1160888671875, 0.2015380859375, 0.024322509765625, 0.125732421875, 0.09930419921875, 0.1151123046875, 0.1109619140625, 0.0958251953125, 0.09552001953125, 0.0609130859375, 0.061737060546875, 0.01007080078125, 0.0928955078125, 0.1339111328125, 0.064...
embed
77479741_c0
77479741
fsharp
0
Title: Does _ (discard) not make sense for use! bindings? Problem title: Does _ (discard) not make sense for use! bindings? Tags: f%23, dispose, asynchronous Problem: Does _ (discard) not make sense for use! bindings? It seems to me that there is an asymmetry here: // Ok use _ = { new IDisposable with member _.Dispose(...
Does _ (discard) not make sense for use! bindings? Does _ (discard) not make sense for use! bindings? f%23 dispose asynchronous Does IDisposable _.Dispose Error FS1288 Async.OnCancel Does _ (discard) not make sense for use! bindings? It seems to me that there is an asymmetry here: How come there is this constraint impo...
[ -0.00927734375, 0.0196533203125, 0.01202392578125, -0.0023345947265625, -0.00726318359375, 0.016357421875, -0.0026092529296875, -0.005828857421875, 0.01214599609375, -0.00787353515625, -0.0120849609375, -0.01068115234375, 0.017822265625, 0.005157470703125, 0.0179443359375, -0.006103515...
[ 101790, 101, 3827, 38931, 959, 3249, 10422, 100, 4527, 38, 128239, 7, 1238, 3949, 3742, 60458, 10, 12654, 101966, 11338, 164, 7522, 2886, 44456, 78381, 212059, 93774, 1530, 12772, 238, 20320, 54694, 8969, 37202, 237, 53, 3019, 15123, 1380, ...
[ 0.03643798828125, 0.1453857421875, 0.117919921875, 0.251953125, 0.098388671875, 0.09375, 0.1864013671875, 0.046783447265625, 0.173583984375, 0.0765380859375, 0.24609375, 0.05877685546875, 0.0635986328125, 0.04119873046875, 0.1826171875, 0.2344970703125, 0.0227203369140625, 0.151489...
embed
29769477_c0
29769477
fsharp
0
Title: F# negative indices in array Problem title: F# negative indices in array Tags: arrays, f%23, dictionary Problem: F# negative indices in array In my application there is a need to precompute and keep trigonometric function values for some particular angle parameters, the range varies from -90 to 180 degree. I can...
F# negative indices in array F# negative indices in array arrays f%23 dictionary F# negative indices in array In my application there is a need to precompute and keep trigonometric function values for some particular angle parameters, the range varies from -90 to 180 degree. I can create arrays(one for each sine, cos e...
[ -0.00543212890625, -0.029052734375, -0.0031585693359375, -0.0025482177734375, -0.006561279296875, -0.032470703125, 0.0135498046875, 0.0234375, 0.006378173828125, -0.00323486328125, -0.0093994140625, 0.0250244140625, -0.00946044921875, 0.00372314453125, 0.0230712890625, -0.0162353515625...
[ 563, 4904, 40907, 136044, 23, 10298, 53, 7, 4778, 1238, 3949, 3742, 45, 10763, 6635, 38415, 3871, 118562, 65970, 13695, 171353, 186518, 32354, 142424, 100, 17311, 55291, 171859, 37457, 41110, 73238, 47, 8719, 79385, 831, 28282, 6634, 9545, ...
[ 0.156494140625, 0.211181640625, 0.279541015625, 0.2196044921875, 0.06060791015625, 0.18359375, 0.06536865234375, 0.04742431640625, 0.1097412109375, 0.110107421875, 0.0478515625, 0.1715087890625, 0.0721435546875, 0.13818359375, 0.111328125, 0.0872802734375, 0.043243408203125, 0.0701...
embed
25877460_c0
25877460
fsharp
0
Title: FSharp type Provider -- Different Sheet than first? Problem title: FSharp type Provider -- Different Sheet than first? Tags: excel, f%23, type-providers Problem: FSharp type Provider -- Different Sheet than first? Using http://fsprojects.github.io/ExcelProvider/ it would appear that the second argument for the t...
FSharp type Provider -- Different Sheet than first? FSharp type Provider -- Different Sheet than first? excel f%23 type-providers FSharp Provider Different Sheet FSharp type Provider -- Different Sheet than first? Using http://fsprojects.github.io/ExcelProvider/ it would appear that the second argument for the type pro...
[ 0.03125, 0.00726318359375, -0.01806640625, 0.022216796875, -0.0137939453125, 0.00933837890625, -0.004241943359375, 0.00122833251953125, 0.018310546875, 0.01495361328125, 0.00506591796875, 0.0009307861328125, 0.008056640625, 0.0126953125, 0.0166015625, 0.004730224609375, -0.0133056640...
[ 93774, 3467, 254, 10644, 123089, 42, 4210, 242520, 4687, 126, 3501, 5117, 64152, 1238, 3742, 93136, 14202, 17447, 95322, 15769, 32102, 846, 184926, 177997, 62160, 17932, 10750, 81450, 35839, 7816, 4734, 114864, 40140, 37457, 38750, 5881, 133907...
[ 0.08172607421875, 0.186279296875, 0.1734619140625, 0.2127685546875, 0.20263671875, 0.10205078125, 0.023040771484375, 0.1796875, 0.1947021484375, 0.131591796875, 0.08203125, 0.090087890625, 0.1712646484375, 0.030059814453125, 0.1029052734375, 0.17333984375, 0.03729248046875, 0.13476...
embed
58789702_c0
58789702
fsharp
0
Title: How to properly force HTTPS in SAFE-Stack? Problem title: How to properly force HTTPS in SAFE-Stack? Tags: f%23, safe-stack, saturn-framework Problem: How to properly force HTTPS in SAFE-Stack? As per Saturn docs , to have HSTS in Saturn, one needs to specify force_ssl in the application : application { url ("ht...
How to properly force HTTPS in SAFE-Stack? How to properly force HTTPS in SAFE-Stack? f%23 safe-stack saturn-framework How HTTPS SAFE-Stack force_ssl port.ToString Request How to properly force HTTPS in SAFE-Stack? As per Saturn docs , to have HSTS in Saturn, one needs to specify force_ssl in the application : This wor...
[ -0.0146484375, 0.01300048828125, 0.01080322265625, 0.0028076171875, -0.017333984375, -0.02734375, -0.0084228515625, -0.0159912109375, -0.0167236328125, -0.022216796875, -0.00897216796875, -0.013916015625, 0.007781982421875, 0.027099609375, 0.0113525390625, -0.0025482177734375, -0.016...
[ 11249, 155965, 37772, 135913, 294, 23, 5377, 30018, 42378, 2594, 47, 3742, 46002, 590, 110574, 19, 160328, 18244, 7, 24861, 11469, 7763, 71713, 853, 75616, 118651, 765, 39718, 12763, 40140, 18929, 38415, 43240, 13158, 11389, 1467, 36356, 4000...
[ 0.0621337890625, 0.138671875, 0.2379150390625, 0.266357421875, 0.1910400390625, 0.0723876953125, 0.124267578125, 0.2100830078125, 0.1875, 0.14306640625, 0.04705810546875, 0.0360107421875, 0.1558837890625, 0.15771484375, 0.124267578125, 0.0843505859375, 0.044952392578125, 0.00119018...
embed
77375169_c0
77375169
fsharp
0
Title: F# Debugger in VS Code Polyglot (Interactive) Notbook Problem title: F# Debugger in VS Code Polyglot (Interactive) Notbook Tags: f%23, f%23-interactive, polyglot, vscode-debugger, vscode-extensions Problem: F# Debugger in VS Code Polyglot (Interactive) Notbook Is there an F# debugger extension for use in VS Code...
F# Debugger in VS Code Polyglot (Interactive) Notbook F# Debugger in VS Code Polyglot (Interactive) Notbook f%23 f%23-interactive polyglot vscode-debugger vscode-extensions Debugger Polyglot Interactive Notbook F# Debugger in VS Code Polyglot (Interactive) Notbook Is there an F# debugger extension for use in VS Code Po...
[ -0.005523681640625, -0.0030670166015625, 0.011962890625, 0.01519775390625, 0.007415771484375, 0.0038299560546875, 0.00408935546875, 0.0185546875, 0.000885009765625, -0.010498046875, 0.0159912109375, -0.01080322265625, 0.0198974609375, 0.01507568359375, 0.012451171875, 0.001022338867187...
[ 563, 4904, 262, 978, 21407, 23, 44160, 28864, 63306, 38869, 18, 44851, 71232, 11205, 14137, 1238, 27495, 10433, 35874, 20209, 40899, 112, 3355, 128872, 5337, 2071, 2685, 142, 8, 111938, 4527, 82772, 183098, 3871, 1957, 123087, 759, 2053, 45...
[ 0.1484375, 0.2073974609375, 0.139404296875, 0.2347412109375, 0.171630859375, 0.043853759765625, 0.18994140625, 0.205078125, 0.1455078125, 0.16943359375, 0.06298828125, 0.05523681640625, 0.1259765625, 0.13671875, 0.1480712890625, 0.061309814453125, 0.0202484130859375, 0.044494628906...
embed
15848575_c0
15848575
fsharp
0
Title: Shortest declaration of the read/write property in F# Problem title: Shortest declaration of the read/write property in F# Tags: f%23, c%23-to-f%23 Problem: Shortest declaration of the read/write property in F# I need a few public properties, in C# I will do this way. public VendorOrderService { get; set; } What...
Shortest declaration of the read/write property in F# Shortest declaration of the read/write property in F# f%23 c%23-to-f%23 Shortest VendorOrderService VendorService Unchecked.defaultof Shortest declaration of the read/write property in F# I need a few public properties, in C# I will do this way. What is the shortest...
[ -0.00390625, 0.021728515625, 0.01708984375, -0.03271484375, 0.0147705078125, -0.00970458984375, 0.01287841796875, -0.018798828125, 0.00482177734375, 0.018310546875, 0.01031494140625, 0.0419921875, -0.00145721435546875, 0.015625, 0.00396728515625, 0.004425048828125, -0.0245361328125, ...
[ 82990, 525, 21635, 1363, 12301, 64, 434, 18781, 57266, 563, 4904, 1238, 3742, 501, 27495, 188, 420, 10146, 1846, 143045, 121979, 992, 78292, 214810, 4390, 23, 3871, 10846, 3835, 183871, 313, 70, 16610, 32399, 57840, 47148, 6002, 86531, 6044...
[ 0.21435546875, 0.1732177734375, 0.186767578125, 0.0150604248046875, 0.1727294921875, 0.1259765625, 0.099853515625, 0.131591796875, 0.2171630859375, 0.142333984375, 0.2252197265625, 0.0885009765625, 0.1160888671875, 0.038909912109375, 0.1287841796875, 0.1005859375, 0.0635986328125, ...
embed
20893100_c0
20893100
fsharp
0
Title: throw exception in async Problem title: throw exception in async Tags: f%23, exception Problem: throw exception in async I have the following code: member public this.GetData(uri: string) = async { let! res = Async.AwaitTask(httpClient.GetAsync uri) return res } When the property res.IsSuccessStatusCode is false...
throw exception in async throw exception in async f%23 exception this.GetData Async.AwaitTask httpClient.GetAsync res.IsSuccessStatusCode Exception throw exception in async I have the following code: When the property res.IsSuccessStatusCode is false I would like to throw an exception, how can I achieve this. The follo...
[ -0.007537841796875, 0.031005859375, 0.00927734375, -0.0167236328125, 0.02197265625, -0.0225830078125, 0.016845703125, 0.020751953125, -0.0024871826171875, 0.0125732421875, 0.01483154296875, 0.01141357421875, 0.00775146484375, -0.0169677734375, 0.0301513671875, -0.01104736328125, 0.01...
[ 104250, 131527, 23, 10, 12654, 238, 1238, 3949, 3742, 903, 137989, 634, 9874, 1621, 150, 3332, 29598, 14168, 26531, 135206, 114211, 5443, 63928, 70, 25632, 18151, 57266, 223, 98320, 2806, 1884, 69307, 23742, 18, 9969, 1340 ]
[ 0.209716796875, 0.259033203125, 0.051605224609375, 0.05999755859375, 0.2073974609375, 0.1309814453125, 0.02813720703125, 0.0289459228515625, 0.1513671875, 0.027679443359375, 0.0621337890625, 0.03271484375, 0.06396484375, 0.048431396484375, 0.032379150390625, 0.1170654296875, 0.085144...
embed
3739531_c0
3739531
fsharp
0
Title: How to limit the number of threads created for an asynchronous Seq.map operation in F#? Problem title: How to limit the number of threads created for an asynchronous Seq.map operation in F#? Tags: multithreading, f%23 Problem: How to limit the number of threads created for an asynchronous Seq.map operation in F#...
How to limit the number of threads created for an asynchronous Seq.map operation in F#? How to limit the number of threads created for an asynchronous Seq.map operation in F#? multithreading f%23 How Seq.map Async.Parallel Async.RunSynchronously How to limit the number of threads created for an asynchronous Seq.map ope...
[ -0.00677490234375, 0.0026702880859375, -0.0162353515625, -0.009521484375, -0.000949859619140625, -0.0179443359375, 0.01080322265625, 0.0155029296875, -0.00201416015625, -0.04248046875, -0.021728515625, 0.01531982421875, 0.0140380859375, 0.0255126953125, 0.025146484375, -0.0004558563232...
[ 11249, 17475, 14012, 86997, 7, 75935, 12654, 101966, 503, 864, 62346, 41018, 563, 4904, 3869, 65847, 11, 6238, 1238, 3742, 238, 1229, 163321, 217835, 127, 1900, 43581, 169581, 2967, 17660, 28282, 5792, 5941, 150631, 38415, 14922, 686, 26531, ...
[ 0.03240966796875, 0.221923828125, 0.087646484375, 0.239990234375, 0.047149658203125, 0.1185302734375, 0.163818359375, 0.137451171875, 0.090087890625, 0.1788330078125, 0.1925048828125, 0.12646484375, 0.09130859375, 0.17822265625, 0.091796875, 0.1634521484375, 0.051544189453125, 0.01...
embed
53538117_c0
53538117
fsharp
0
Title: F# type Statisitic Problem title: F# type Statisitic Tags: types, list, f%23 Problem: F# type Statisitic I created a Type Statistics and I have to return every value = 0 in the type Statistics. I don't know how to return the Type Statistics. I only know how to return an 'a list'. Here is the Type: type Statistic...
F# type Statisitic F# type Statisitic types list f%23 Statisitic Statistics Nat List.map F# type Statisitic I created a Type Statistics and I have to return every value = 0 in the type Statistics. I don't know how to return the Type Statistics. I only know how to return an 'a list'. Here is the Type: Here is what I try...
[ -0.01104736328125, -0.0028228759765625, -0.006988525390625, -0.01007080078125, -0.014892578125, -0.01416015625, 0.0206298828125, -0.00958251953125, 0.0048828125, 0.0279541015625, 0.00494384765625, 0.0244140625, 0.00176239013671875, 0.00012874603271484375, 0, 0.0029296875, 0.020507812...
[ 563, 4904, 10644, 71465, 172, 9523, 52895, 5303, 1238, 3949, 3742, 126124, 68875, 32036, 62346, 75935, 60457, 28021, 765, 30646, 11907, 34292, 2203, 757, 3714, 3642, 11, 11853, 9790 ]
[ 0.118408203125, 0.1842041015625, 0.1959228515625, 0.140869140625, 0.0701904296875, 0.1036376953125, 0.1920166015625, 0.1778564453125, 0.0675048828125, 0.022705078125, 0.101806640625, 0.206298828125, 0.144287109375, 0.1768798828125, 0.1094970703125, 0.06744384765625, 0.2568359375, 0...
embed
42948899_c0
42948899
fsharp
0
Title: How to turn off Ionide Lint warnings Problem title: How to turn off Ionide Lint warnings Tags: f%23, lint, ionide Problem: How to turn off Ionide Lint warnings I have written a F# script in FSI using Ionide in VS Code. It's a great tool, but I am getting a warning from Ionide Lint suggesting a code improvement: ...
How to turn off Ionide Lint warnings How to turn off Ionide Lint warnings f%23 lint ionide How Ionide Lint Seq.map How to turn off Ionide Lint warnings I have written a F# script in FSI using Ionide in VS Code. It's a great tool, but I am getting a warning from Ionide Lint suggesting a code improvement: I have about 6 ...
[ -0.0050048828125, 0.002288818359375, 0.01348876953125, 0.0035400390625, -0.012939453125, 0.003204345703125, -0.006561279296875, 0.01458740234375, 0.00080108642578125, -0.00927734375, -0.004791259765625, 0.021728515625, 0.01025390625, 0.04150390625, 0.018798828125, -0.006317138671875, ...
[ 11249, 15504, 5773, 37859, 2506, 25497, 18, 1631, 6977, 47, 1238, 3949, 3742, 11508, 45339, 503, 864, 5, 62346, 59121, 563, 4904, 26499, 9902, 44160, 28864, 6782, 55516, 592, 42459, 18151, 136912, 765, 1672, 305, 32354, 137158, 25842, 58745...
[ 0.05279541015625, 0.160400390625, 0.24169921875, 0.2274169921875, 0.2493896484375, 0.211669921875, 0.1866455078125, 0.1654052734375, 0.12744140625, 0.046142578125, 0.06365966796875, 0.0151519775390625, 0.0947265625, 0.154296875, 0.17041015625, 0.11181640625, 0.177490234375, 0.00445...
embed
28603392_c0
28603392
fsharp
0
Title: How can I use TypeProviders to work with MS Access Problem title: How can I use TypeProviders to work with MS Access Tags: f%23 Problem: How can I use TypeProviders to work with MS Access From one side I cannot use: type dbSchema = OleDbConnection<"Provider=Microsoft.ACE.OLEDB.12.0; Data Source= C:\\\\Sources\\E...
How can I use TypeProviders to work with MS Access How can I use TypeProviders to work with MS Access f%23 How TypeProviders Access OleDbConnection Provider Microsoft.ACE.OLEDB.12.0 Data Source Sources Experiments DbAccess db.accdb How can I use TypeProviders to work with MS Access From one side I cannot use: On the ot...
[ 0.021728515625, 0.005584716796875, -0.00189971923828125, 0.0341796875, 0.0026397705078125, 0.020263671875, 0.00162506103515625, -0.00433349609375, 0.0032501220703125, -0.06005859375, 0.00799560546875, -0.01434326171875, 0.01434326171875, -0.006378173828125, -0.00151824951171875, -0.002...
[ 11249, 831, 4527, 60457, 177997, 14, 14202, 4488, 678, 16265, 40266, 87, 47, 3742, 31031, 397, 275, 235603, 123089, 7244, 61019, 71621, 39463, 15654, 2389, 11809, 77641, 146797, 39450, 26531, 40041, 48073, 5609, 53418, 959, 2046, 2053, 43701,...
[ 0.0350341796875, 0.07177734375, 0.0960693359375, 0.2476806640625, 0.1966552734375, 0.1573486328125, 0.1842041015625, 0.09100341796875, 0.09356689453125, 0.0810546875, 0.200927734375, 0.0078125, 0.003753662109375, 0.06353759765625, 0.1077880859375, 0.06195068359375, 0.0914306640625, ...
embed
52946754_c0
52946754
fsharp
0
Title: Pipe Right pass-through operator PipeThrough Problem title: Pipe Right pass-through operator PipeThrough Tags: currying, f%23 Problem: Pipe Right pass-through operator PipeThrough I have declared the following operator to help make my curried code a bit more legible Pipe-Through allows a value to be passed throu...
Pipe Right pass-through operator PipeThrough Pipe Right pass-through operator PipeThrough currying f%23 Pipe Right PipeThrough logger.LogInformation Pipe Right pass-through operator PipeThrough I have declared the following operator to help make my curried code a bit more legible Pipe-Through allows a value to be passe...
[ 0.01129150390625, 0.014404296875, 0.01116943359375, 0.0002765655517578125, 0.0023956298828125, -0.0108642578125, -0.002655029296875, -0.0233154296875, -0.00372314453125, -0.00933837890625, 0.0223388671875, 0.005767822265625, -0.00021839141845703125, -0.01043701171875, 0.0103759765625, ...
[ 93128, 13, 90911, 27875, 222521, 39933, 20800, 42, 72089, 198555, 214, 1238, 3949, 3742, 73088, 113972, 205169, 765, 159978, 25632, 47, 4358, 3249, 759, 9709, 46572, 18151, 4785, 1286, 6049, 28236, 9, 114864, 34292, 115081, 8305, 55300, 21342...
[ 0.2015380859375, 0.13916015625, 0.23974609375, 0.109130859375, 0.2066650390625, 0.260986328125, 0.144775390625, 0.1888427734375, 0.2548828125, 0.1859130859375, 0.07305908203125, 0.0335693359375, 0.051239013671875, 0.133544921875, 0.1619873046875, 0.10693359375, 0.1649169921875, 0.0...
embed
5584639_c0
5584639
fsharp
0
Title: F# all permutations of C# class Problem title: F# all permutations of C# class Tags: f%23, permutation Problem: F# all permutations of C# class I have a C# class MyClass. And I would need to implement f# method returning all possible permutations of items in a IList Problem is that MyClass contains a method bool...
F# all permutations of C# class F# all permutations of C# class f%23 permutation F# all permutations of C# class I have a C# class MyClass. And I would need to implement f# method returning all possible permutations of items in a IList Problem is that MyClass contains a method bool CheckOrder(IList predecessors) return...
[ -0.004638671875, 0.004150390625, 0.0033111572265625, 0.0064697265625, -0.018310546875, 0.00567626953125, -0.01611328125, -0.004730224609375, 0.00750732421875, -0.0264892578125, 0.00653076171875, 0.0267333984375, 0.0162353515625, 0.00173187255859375, -0.00823974609375, 0.003036499023437...
[ 563, 4904, 756, 117, 14311, 21094, 111, 313, 18507, 1238, 3949, 3742, 561, 22062, 87, 765, 2646, 140803, 2806, 3871, 29479, 55300, 30646, 214, 7722, 55769, 23, 154663, 15649, 70541, 142484, 38679, 143045, 56, 16444, 1419, 1653, 13, 26531, ...
[ 0.18798828125, 0.241455078125, 0.160888671875, 0.185546875, 0.255126953125, 0.1292724609375, 0.031494140625, 0.0718994140625, 0.1986083984375, 0.173583984375, 0.07623291015625, 0.1630859375, 0.211181640625, 0.07012939453125, 0.1153564453125, 0.025115966796875, 0.1485595703125, 0.24...
embed
65304925_c0
65304925
fsharp
0
Title: How to cast generic collections in F# Problem title: How to cast generic collections in F# Tags: f%23, upcasting Problem: How to cast generic collections in F# Given type X () = class end type XX () = inherit X() type NestedList<'T> = list<list<'T>> let xxs = [[ XX() ]] // list<list<XX>> What is the best way to ...
How to cast generic collections in F# How to cast generic collections in F# f%23 upcasting How NestedList List.ofSeq Seq.cast How to cast generic collections in F# Given What is the best way to cast from list<list<XX>> to NestedList<X> ? This fails: This works but reallocates the list. Is there a more elegant way doing...
[ -0.01953125, 0.034912109375, 0.0162353515625, -0.013671875, 0.0155029296875, -0.0003566741943359375, -0.003143310546875, -0.006561279296875, 0.01312255859375, 0.0072021484375, 0.00014019012451171875, -0.007171630859375, 0.0172119140625, 0.017822265625, -0.006683349609375, -0.021484375,...
[ 11249, 47, 37702, 189534, 42486, 7, 563, 4904, 23, 1238, 3949, 3742, 1257, 55741, 28701, 71, 154663, 32036, 4390, 4233, 864, 503, 2965, 3917, 1295, 5303, 6562, 42918, 1542, 35782, 43240, 2773, 116292, 27650, 15490, 87632, 61924, 32354, 618 ...
[ 0.042877197265625, 0.121337890625, 0.21435546875, 0.2486572265625, 0.2138671875, 0.062042236328125, 0.1307373046875, 0.19384765625, 0.0506591796875, 0.07061767578125, 0.00421142578125, 0.1055908203125, 0.058258056640625, 0.19140625, 0.1915283203125, 0.0955810546875, 0.1611328125, 0...
embed
45537861_c0
45537861
fsharp
0
Title: F# Intellisense in Visual Studio for Mac Problem title: F# Intellisense in Visual Studio for Mac Tags: visual-studio, intellisense, f%23 Problem: F# Intellisense in Visual Studio for Mac Autocomplete and intellisense is TERRIBLE for visual studio for mac. It will literally autocomplete random objects in the midd...
F# Intellisense in Visual Studio for Mac F# Intellisense in Visual Studio for Mac visual-studio intellisense f%23 Intellisense Visual Studio Mac F# Intellisense in Visual Studio for Mac Autocomplete and intellisense is TERRIBLE for visual studio for mac. It will literally autocomplete random objects in the middle of st...
[ 0.0106201171875, -0.0074462890625, -0.00677490234375, 0.0152587890625, -0.0189208984375, 0.022705078125, -0.0029144287109375, 0.01312255859375, -0.037109375, 0.01495361328125, -0.000518798828125, 0.0052490234375, 0.0013885498046875, 0.01507568359375, 0.01068115234375, -0.00823974609375...
[ 563, 4904, 30131, 27077, 184, 23, 73372, 22968, 100, 4727, 21176, 52629, 892, 1238, 3949, 3742, 4396, 277, 131801, 83, 384, 200587, 125149, 12275, 19138, 1221, 218500, 1809, 96759, 36746, 86991, 79315, 959, 4488, 756, 3229, 32354, 18, 35604...
[ 0.1343994140625, 0.18701171875, 0.1580810546875, 0.2344970703125, 0.18115234375, 0.03173828125, 0.203369140625, 0.1875, 0.145263671875, 0.174072265625, 0.17626953125, 0.1622314453125, 0.173828125, 0.0933837890625, 0.009185791015625, 0.0909423828125, 0.2003173828125, 0.1541748046875...
embed
65430325_c1
65430325
fsharp
1
throwing any exception. I have also tried using Async.StartImmediate instead of RunSynchronously with the same result. If I try both of these at the same time then the program just freezes up at the Async.SwitchToContext lines instead of exiting out. Code signals: SwtichToContext, EntryPoint, STAThread, Debug.WriteLin...
throwing any exception. I have also tried using Async.StartImmediate instead of RunSynchronously with the same result. If I try both of these at the same time then the program just freezes up at the Async.SwitchToContext lines instead of exiting out. Code signals: SwtichToContext, EntryPoint, STAThread, Debug.WriteLin...
[ -0.0074462890625, 0.0303955078125, -0.0020904541015625, -0.005706787109375, -0.0126953125, -0.0081787109375, 0.02099609375, -0.0081787109375, 0.0036773681640625, -0.038818359375, -0.0001220703125, 0.0260009765625, -0.0032806396484375, -0.00982666015625, 0.0233154296875, 0.0059814453125...
[ 104250, 214, 2499, 131527, 37842, 17368, 12654, 238, 126597, 12333, 67, 64457, 28398, 217835, 127, 1900, 79850, 5701, 16750, 9790, 15044, 1528, 4092, 13105, 1257, 99, 131519, 7763, 11935, 22829, 124519, 82230, 1810, 28864, 26073, 434, 118, 20...
[ 0.2099609375, 0.0736083984375, 0.103271484375, 0.2481689453125, 0.04913330078125, 0.04925537109375, 0.180908203125, 0.07464599609375, 0.111572265625, 0.130615234375, 0.058990478515625, 0.02239990234375, 0.112548828125, 0.1131591796875, 0.0849609375, 0.140380859375, 0.1431884765625, ...
embed
11368114_c0
11368114
fsharp
0
Title: Efficient conversion from String[] to F# List Problem title: Efficient conversion from String[] to F# List Tags: f%23, collections, casting Problem: Efficient conversion from String[] to F# List I'm coming to F# from a C# background and a little behind on the different lists and collections. I recently ran into ...
Efficient conversion from String[] to F# List Efficient conversion from String[] to F# List f%23 collections casting String Efficient List File.ReadAllLines LinesOText.txt Efficient conversion from String[] to F# List I'm coming to F# from a C# background and a little behind on the different lists and collections. I re...
[ -0.010498046875, -0.00274658203125, 0.002960205078125, 0.002410888671875, -0.00823974609375, -0.001739501953125, -0.00640869140625, 0.0036468505859375, 0, -0.002532958984375, -0.00096893310546875, 0.00714111328125, -0.01031494140625, 0.0025634765625, -0.018310546875, -0.001663208007812...
[ 241, 24500, 45964, 142477, 1295, 23351, 214, 1065, 47, 563, 4904, 32036, 1238, 3949, 3742, 42486, 176050, 42724, 31345, 43512, 93232, 16777, 670, 174379, 124326, 38162, 76615, 10176, 50155, 12921, 5303, 13028, 7225, 44841, 738, 10, 79315, 242...
[ 0.03448486328125, 0.181640625, 0.1192626953125, 0.2039794921875, 0.114990234375, 0.1993408203125, 0.103515625, 0.08544921875, 0.1533203125, 0.1593017578125, 0.2236328125, 0.2215576171875, 0.07330322265625, 0.039215087890625, 0.1463623046875, 0.1722412109375, 0.127685546875, 0.12609...
embed
22355673_c0
22355673
fsharp
0
Title: Word completion without hitting CTRL+SPACE Problem title: Word completion without hitting CTRL+SPACE Tags: visual-studio-2013, intellisense, f%23 Problem: Word completion without hitting CTRL+SPACE From http://msdn.microsoft.com/en-us/library/hcw1s69b.aspx : Complete Word completes the rest of a variable, comman...
Word completion without hitting CTRL+SPACE Word completion without hitting CTRL+SPACE visual-studio-2013 intellisense f%23 Word CTRL SPACE visual-studio-2013 Word completion without hitting CTRL+SPACE From http://msdn.microsoft.com/en-us/library/hcw1s69b.aspx : Is there any way to make Complete Word autocompletion work...
[ -0.0002384185791015625, 0.0048828125, -0.0142822265625, 0.004364013671875, -0.0211181640625, 0.0076904296875, -0.003143310546875, 0.0057373046875, -0.00634765625, 0.00174713134765625, 0.00848388671875, 0.022216796875, -0.0218505859375, -0.00555419921875, 0.0021514892578125, 0.019897460...
[ 22543, 21721, 1830, 15490, 5962, 71885, 30121, 1328, 9434, 61019, 21176, 52629, 74790, 892, 27077, 3742, 47654, 138410, 2844, 14212, 2499, 3917, 3249, 168318, 1809, 277, 8705, 1363, 4488, 237, 10644, 19441, 997, 10854 ]
[ 0.177734375, 0.21044921875, 0.086181640625, 0.1163330078125, 0.061279296875, 0.0831298828125, 0.1641845703125, 0.077392578125, 0.1307373046875, 0.05517578125, 0.12939453125, 0.1112060546875, 0.129638671875, 0.027862548828125, 0.0982666015625, 0.0753173828125, 0.14990234375, 0.08178...
embed
10837403_c0
10837403
fsharp
0
Title: f# get product of 4 adjacent numbers in an array Problem title: f# get product of 4 adjacent numbers in an array Tags: f%23, .net Problem: f# get product of 4 adjacent numbers in an array I'm trying to get the max product of 4 adjacent numbers in an array this is what I got now: let max4 line = let rec loop acc ...
f# get product of 4 adjacent numbers in an array f# get product of 4 adjacent numbers in an array f%23 .net max4 f# get product of 4 adjacent numbers in an array I'm trying to get the max product of 4 adjacent numbers in an array this is what I got now: I get a compilation error on the max(,) saying: Anybody knows what...
[ -0.000820159912109375, 0.0032196044921875, -0.0032806396484375, 0.0164794921875, -0.0166015625, 0.002960205078125, -0.0179443359375, 0.0279541015625, 0.021240234375, -0.03759765625, -0.01153564453125, 0.021484375, -0.00946044921875, -0.01422119140625, 0.0145263671875, -0.01446533203125...
[ 1238, 4904, 2046, 12996, 111, 201, 123594, 16797, 101935, 23, 10298, 53, 3742, 1179, 18389, 617, 31577, 98352, 1363, 18499, 132, 54433, 28541, 37873, 93002, 2367, 44691, 903, 18151, 29806 ]
[ 0.120849609375, 0.16455078125, 0.0875244140625, 0.26123046875, 0.06390380859375, 0.2020263671875, 0.152099609375, 0.1737060546875, 0.146240234375, 0.033599853515625, 0.1597900390625, 0.099609375, 0.1129150390625, 0.138916015625, 0.205322265625, 0.1976318359375, 0.046630859375, 0.18...
embed
27957687_c1
27957687
fsharp
1
It looked like a faithful recreation. Not even using functional style either. I was looking at the msdn on casting in F# to see if I was doing it correctly. It looks like I am, though they have 1 example and it is incredibly minimal in nature. The problem is I get the error: Type constraint mismatch. The type 'FilterG...
It looked like a faithful recreation. Not even using functional style either. I was looking at the msdn on casting in F# to see if I was doing it correctly. It looks like I am, though they have 1 example and it is incredibly minimal in nature. The problem is I get the error: Type constraint mismatch. The type 'FilterG...
[ -0.0260009765625, 0.0281982421875, -0.0128173828125, 0.009033203125, -0.01300048828125, -0.00408935546875, -0.01275634765625, -0.0042724609375, -0.0020294189453125, -0.01287841796875, -0.01708984375, -0.042724609375, 0.006256103515625, -0.00421142578125, -0.0125732421875, 0.0185546875,...
[ 1650, 54811, 1884, 109208, 7844, 89011, 1363, 17368, 123309, 20623, 68163, 71, 19, 176050, 563, 4904, 26785, 33342, 106, 27781, 83, 219176, 20187, 31425, 2967, 18499, 60457, 158, 2816, 4288, 1239, 98753, 10644, 919, 379, 720, 37878, 11727, ...
[ 0.0025634765625, 0.109130859375, 0.0338134765625, 0.0870361328125, 0.090087890625, 0.126220703125, 0.0200958251953125, 0.000244140625, 0.103515625, 0.1038818359375, 0.0273284912109375, 0.0452880859375, 0.07720947265625, 0.16357421875, 0.08953857421875, 0.1741943359375, 0.038635253906...
embed
8445562_c0
8445562
fsharp
0
Title: Reflecting on a Discriminated Union Problem title: Reflecting on a Discriminated Union Tags: c%23, f%23 Problem: Reflecting on a Discriminated Union I am getting a bunch of objects from an F# assembly, which I am then reflecting over to discover their value. (To be precise I have a parser using fsYacc. I am then...
Reflecting on a Discriminated Union Reflecting on a Discriminated Union c%23 f%23 Reflecting Discriminated Union Reflecting on a Discriminated Union I am getting a bunch of objects from an F# assembly, which I am then reflecting over to discover their value. (To be precise I have a parser using fsYacc. I am then trying...
[ 0.0089111328125, 0.0123291015625, 0.01611328125, 0.01190185546875, -0.005126953125, 0.0032196044921875, -0.0079345703125, -0.0048828125, 0.016845703125, -0.003997802734375, 0.0030975341796875, -0.00182342529296875, 0.00836181640625, 0.0028076171875, 0.003814697265625, -0.00103759765625...
[ 53295, 8996, 1916, 98, 6206, 135421, 3674, 32528, 3742, 1238, 3949, 20949, 147306, 36746, 1295, 563, 4904, 89845, 38526, 44961, 214, 645, 103882, 34292, 134995, 366, 2189, 17368, 21566, 10060, 44116, 50339, 184, 101344, 100474, 7722, 176377, ...
[ 0.1690673828125, 0.2042236328125, 0.06134033203125, 0.06695556640625, 0.0712890625, 0.22900390625, 0.09033203125, 0.2301025390625, 0.1138916015625, 0.042083740234375, 0.0149993896484375, 0.0892333984375, 0.0650634765625, 0.1964111328125, 0.0162200927734375, 0.07568359375, 0.135009765...
embed
2869357_c0
2869357
fsharp
0
Title: Rewriting simple C# nested class Problem title: Rewriting simple C# nested class Tags: f%23 Problem: Rewriting simple C# nested class What would be an elegant way to implement the functionality of this nested class in F#? private class Aliaser { private int _count; internal Aliaser() { } internal string GetNextA...
Rewriting simple C# nested class Rewriting simple C# nested class f%23 Rewriting Aliaser _count GetNextAlias ToString Seq.initInfinite GetEnumerator aliases.MoveNext aliases.Current Rewriting simple C# nested class What would be an elegant way to implement the functionality of this nested class in F#? This was my first...
[ -0.015380859375, 0.01190185546875, 0.00482177734375, 0.00921630859375, 0.014892578125, 0.01287841796875, 0.007537841796875, -0.005828857421875, 0.000820159912109375, -0.0164794921875, -0.00250244140625, 0.0291748046875, 0.00885009765625, 0.0244140625, 0.0233154296875, 0.000736236572265...
[ 853, 199332, 8781, 313, 4904, 8512, 71, 18507, 1238, 3949, 3742, 2132, 162, 56, 101, 71013, 20779, 81280, 55725, 717, 71713, 503, 864, 217, 48310, 67, 2606, 4597, 55109, 90, 9083, 272, 474, 15724, 2806, 27650, 3917, 29479, 123309, 2481, ...
[ 0.154541015625, 0.205322265625, 0.1761474609375, 0.0235443115234375, 0.1815185546875, 0.24365234375, 0.1417236328125, 0.2113037109375, 0.07586669921875, 0.0648193359375, 0.136474609375, 0.1331787109375, 0.113525390625, 0.1085205078125, 0.010009765625, 0.1837158203125, 0.084716796875,...
embed
75279329_c1
75279329
fsharp
1
Enumerable GetEnumerator b__31_0 System.Data.Entity.Internal.LazyEnumerator MoveNext F# left join with multiple conditions, as a query expression In C# i can do a left join query, with multiple conditions. Like this C# example that runs fine: I've tried to translate this to the following in F#: But the F# version resul...
Enumerable GetEnumerator b__31_0 System.Data.Entity.Internal.LazyEnumerator MoveNext F# left join with multiple conditions, as a query expression In C# i can do a left join query, with multiple conditions. Like this C# example that runs fine: I've tried to translate this to the following in F#: But the F# version resul...
[ -0.0023345947265625, 0.01043701171875, -0.009765625, -0.00299072265625, 0.011962890625, 0.004058837890625, -0.023193359375, 0.00250244140625, 0.0220947265625, -0.0274658203125, -0.0166015625, 0.036376953125, 0.00860595703125, 0.00946044921875, -0.01055908203125, -0.000896453857421875, ...
[ 357, 316, 56, 2886, 20779, 647, 2606, 4597, 5016, 12353, 44851, 2729, 3285, 135828, 81280, 563, 4904, 25737, 33284, 678, 48716, 27289, 237, 41, 1294, 125195, 313, 831, 27781, 127877, 5885, 3900, 19309, 11389, 5443, 63928, 44691, 17368, 5218...
[ 0.002105712890625, 0.15234375, 0.1099853515625, 0.0736083984375, 0.106201171875, 0.011383056640625, 0.17431640625, 0.1036376953125, 0.056427001953125, 0.011505126953125, 0.009185791015625, 0.049835205078125, 0.1094970703125, 0.120849609375, 0.1533203125, 0.1031494140625, 0.1978759765...
embed
29695429_c1
29695429
fsharp
1
Browser" <| fun mailbox -> let rec loop() = actor { let! msg = mailbox.Receive() let msgObj = msg :> Object match msgObj with | :? Entries as e -> printfn "matched message %A" e | _ -> printf "unmatched message %A" msg return! loop()} loop() Now these two lines work correctly feedBrowser <! "abc" feedBrowser <! { Entri...
Browser" <| fun mailbox -> let rec loop() = actor { let! msg = mailbox.Receive() let msgObj = msg :> Object match msgObj with | :? Entries as e -> printfn "matched message %A" e | _ -> printf "unmatched message %A" msg return! loop()} loop() Now these two lines work correctly feedBrowser <! "abc" feedBrowser <! { Entri...
[ 0.00299072265625, 0.0294189453125, -0.006744384765625, -0.0087890625, 0.002105712890625, -0.008544921875, -0.0191650390625, 0.020751953125, 0.00191497802734375, -0.019775390625, 0.0225830078125, 0.00107574462890625, 0.0228271484375, 0.0198974609375, 0.020751953125, 0.00775146484375, ...
[ 86976, 7477, 6648, 11728, 2633, 21954, 40956, 39329, 68163, 177, 329, 5844, 46471, 170, 134549, 14858, 678, 16511, 10484, 28, 28412, 14783, 98753, 297, 26008, 420, 309, 30646, 6626, 124519, 4488, 26785, 61590, 571, 15555, 2189, 2055, 238, 2...
[ 0.2705078125, 0.1707763671875, 0.0887451171875, 0.1815185546875, 0.073486328125, 0.15234375, 0.1488037109375, 0.1700439453125, 0.0457763671875, 0.09588623046875, 0.03143310546875, 0.1029052734375, 0.1041259765625, 0.1190185546875, 0.195068359375, 0.17431640625, 0.00018310546875, 0....
embed
26116602_c2
26116602
fsharp
2
_Value, Tomas, Common, Common.fs:riga, FSI_0046.normalized, Invoke, ObjectSeries, Users, Bruno-Astarita, Documents, Visual, Studio, Projects, TestDeedle02, TestTutorial01.fsx:riga, StartupCode$Deedle, Series.f, Func, Int32, Series.fs:riga, Series.newVector, Tuple, Microsoft.FSharp.Collections.IEnumerator.mapi, DoMoveNe...
_Value, Tomas, Common, Common.fs:riga, FSI_0046.normalized, Invoke, ObjectSeries, Users, Bruno-Astarita, Documents, Visual, Studio, Projects, TestDeedle02, TestTutorial01.fsx:riga, StartupCode$Deedle, Series.f, Func, Int32, Series.fs:riga, Series.newVector, Tuple, Microsoft.FSharp.Collections.IEnumerator.mapi, DoMoveNe...
[ 0.006072998046875, 0.0260009765625, -0.0155029296875, 0.00787353515625, 0.000453948974609375, 0.008544921875, 0.00872802734375, -0.015869140625, -0.006103515625, 0.00909423828125, -0.00628662109375, 0.039794921875, -0.02197265625, -0.01214599609375, 0.004425048828125, 0.01116943359375,...
[ 101, 856, 50770, 4, 92858, 151301, 5, 17447, 12, 29430, 563, 9902, 7049, 9271, 33176, 29367, 360, 23253, 13, 134549, 138724, 53400, 73223, 9, 284, 5613, 913, 43101, 73372, 22968, 27331, 8647, 4657, 297, 133, 9550, 15665, 77275, 6746, 425,...
[ 0.1063232421875, 0.18994140625, 0.2308349609375, 0.0489501953125, 0.2880859375, 0.2347412109375, 0.00299072265625, 0.1614990234375, 0.038665771484375, 0.239501953125, 0.07977294921875, 0.1871337890625, 0.027984619140625, 0.19921875, 0.1575927734375, 0.10589599609375, 0.0284423828125,...
embed
12026065_c0
12026065
fsharp
0
Title: Does appending a list to another list in F# incur copying of underlying objects or just the pointers? Problem title: Does appending a list to another list in F# incur copying of underlying objects or just the pointers? Tags: functional-programming, list, f%23 Problem: Does appending a list to another list in F# ...
Does appending a list to another list in F# incur copying of underlying objects or just the pointers? Does appending a list to another list in F# incur copying of underlying objects or just the pointers? functional-programming list f%23 Does Does appending a list to another list in F# incur copying of underlying object...
[ 0.0042724609375, 0.01141357421875, 0.01141357421875, 0.0166015625, -0.000301361083984375, 0.00037384033203125, -0.0191650390625, 0.010498046875, 0.01043701171875, -0.0023193359375, 0.02783203125, -0.023681640625, 0.0166015625, 0.015625, 0.002044677734375, -0.0172119140625, 0.02038574...
[ 1747, 96819, 5303, 47, 15700, 563, 4904, 73106, 43658, 1379, 538, 36746, 6275, 1314, 123309, 28966, 1238, 3742, 101790, 214, 17569, 1632, 131148, 114689, 48141, 71200, 26785 ]
[ 0.1160888671875, 0.1593017578125, 0.213623046875, 0.1630859375, 0.0977783203125, 0.1185302734375, 0.1820068359375, 0.10321044921875, 0.156494140625, 0.126953125, 0.0787353515625, 0.146240234375, 0.1475830078125, 0.1063232421875, 0.10748291015625, 0.05426025390625, 0.010284423828125, ...
embed
14017219_c0
14017219
fsharp
0
Title: pre-release Collections.Immutable Problem title: pre-release Collections.Immutable Tags: .net, f%23, immutability Problem: pre-release Collections.Immutable Has anyone succeeded in opening the pre-release System.Collections.Immutable from NuGet in F#? I'm getting this error: The type 'IEnumerable`1' is required ...
pre-release Collections.Immutable pre-release Collections.Immutable .net f%23 immutability Collections.Immutable System.Collections.Immutable NETCore v4.5 System.Runtime.dll pre-release Collections.Immutable Has anyone succeeded in opening the pre-release System.Collections.Immutable from NuGet in F#? I'm getting this ...
[ -0.00823974609375, 0.00054931640625, 0.000919342041015625, -0.0146484375, -0.0174560546875, -0.00885009765625, -0.0205078125, -0.0147705078125, 0.006744384765625, -0.00531005859375, 0.0166015625, 0.0130615234375, 0, 0.005218505859375, 0.0244140625, -0.004302978515625, 0.004638671875,...
[ 479, 233707, 68220, 61637, 561, 22819, 1179, 1238, 3742, 566, 14311, 41159, 12353, 78457, 8996, 9960, 4524, 81, 104867, 163321, 6032, 71, 1181, 35672, 214493, 73432, 5, 1295, 1429, 724, 126, 23, 563, 4904, 903, 18499, 13452, 17777, 60061, ...
[ 0.2039794921875, 0.1734619140625, 0.193115234375, 0.103515625, 0.1650390625, 0.2325439453125, 0.12890625, 0.037078857421875, 0.07159423828125, 0.052093505859375, 0.1300048828125, 0.061279296875, 0.180419921875, 0.130859375, 0.162109375, 0.064697265625, 0.1746826171875, 0.0265350341...
embed
52190505_c0
52190505
fsharp
0
Title: Parameterized exception type Problem title: Parameterized exception type Tags: custom-exceptions, f%23 Problem: Parameterized exception type In Scala I can generate an exception that carries a value of some type parameter A via case class MyException[A]( value: A ) extends Exception Is there a way to define a si...
Parameterized exception type Parameterized exception type custom-exceptions f%23 MyException Parameterized Exception BOOL PAIR Parameterized exception type In Scala I can generate an exception that carries a value of some type parameter A via case class MyException[A]( value: A ) extends Exception Is there a way to def...
[ -0.0040283203125, 0.0203857421875, -0.0185546875, 0.006805419921875, -0.0050048828125, -0.00003814697265625, -0.0147705078125, 0.00014019012451171875, 0.0045166015625, -0.01177978515625, 0.00421142578125, -0.0224609375, -0.006988525390625, -0.0155029296875, 0.022216796875, -0.015441894...
[ 1720, 29089, 29367, 131527, 10644, 114122, 3355, 63928, 1238, 3949, 3742, 2646, 19279, 5443, 335, 137142, 436, 126546, 360, 152653, 11, 87, 831, 139392, 2258, 10484, 34292, 171859, 62, 1829, 7225, 18507, 284, 65042, 3917, 61924, 21373, 23, ...
[ 0.14794921875, 0.2069091796875, 0.1561279296875, 0.24951171875, 0.2117919921875, 0.1318359375, 0.1038818359375, 0.2666015625, 0.03314208984375, 0.005401611328125, 0.0914306640625, 0.1181640625, 0.148681640625, 0.1385498046875, 0.047119140625, 0.14501953125, 0.114501953125, 0.151123...
embed
52863434_c0
52863434
fsharp
0
Title: Comparing option return value to option value Problem title: Comparing option return value to option value Tags: f%23 Problem: Comparing option return value to option value i'm trying to do something super simple... let Average (a : float list) : (float option) = let add (x : float) (y : float) = x+y match a.Len...
Comparing option return value to option value Comparing option return value to option value f%23 Comparing Average a.Length None Some List.fold CompareResult Comparing option return value to option value i'm trying to do something super simple... That's my two functions. When i do CompareResult Average [5.8;6.6;9.4;3.5...
[ 0.005401611328125, -0.00946044921875, 0.0098876953125, -0.00909423828125, -0.003662109375, -0.010986328125, 0.030029296875, -0.0206298828125, 0.0120849609375, 0.0361328125, 0.0096435546875, 0.0177001953125, -0.000690460205078125, -0.00107574462890625, 0.0093994140625, 0.004058837890625...
[ 113307, 214, 35829, 30646, 34292, 47, 1238, 3949, 3742, 40168, 29838, 10, 449, 438, 32036, 42822, 13, 4332, 7, 7136, 31577, 1601, 8781, 6626, 32354, 153451, 156960, 1126, 72516, 151152, 1892, 112916, 20949, 98320, 25647, 15400, 5809, 6782, ...
[ 0.1739501953125, 0.044281005859375, 0.2469482421875, 0.2320556640625, 0.1878662109375, 0.1038818359375, 0.0523681640625, 0.055145263671875, 0.1239013671875, 0.1788330078125, 0.1158447265625, 0.0290679931640625, 0.00970458984375, 0.0487060546875, 0.1287841796875, 0.1763916015625, 0.08...
embed
32730475_c0
32730475
fsharp
0
Title: F#: Get length of tuple Problem title: F#: Get length of tuple Tags: f%23, f%23-interactive Problem: F#: Get length of tuple Is there any way to get tuple length. I mean for something like let a=(1,2,3) . I must get 3 . I have used the following code to convert a tuple to a list and tried to get the length of th...
F#: Get length of tuple F#: Get length of tuple f%23 f%23-interactive Get Microsoft.FSharp.Reflection.FSharpType.IsTuple t.GetType Some Microsoft.FSharp.Reflection.FSharpValue.GetTupleFields Array.toList None F#: Get length of tuple Is there any way to get tuple length. I mean for something like let a=(1,2,3) . I must ...
[ 0.01263427734375, 0.0279541015625, 0.0025482177734375, 0.0220947265625, -0.00347900390625, -0.00030517578125, 0.00872802734375, 0.01263427734375, 0.018798828125, -0.034912109375, -0.002197265625, 0.023681640625, -0.01611328125, 0.0264892578125, 0.01312255859375, 0.00885009765625, 0.0...
[ 563, 4904, 12, 20779, 140909, 111, 370, 8705, 1238, 3742, 27495, 10433, 71232, 7244, 36381, 3467, 254, 5, 190015, 133, 196707, 29598, 15665, 19388, 188, 154663, 2071, 2685, 2499, 3917, 47, 2046, 29459, 100, 1884, 2633, 10, 1369, 41600, 15...
[ 0.1083984375, 0.1875, 0.03973388671875, 0.1143798828125, 0.240966796875, 0.1038818359375, 0.197021484375, 0.27001953125, 0.0635986328125, 0.0633544921875, 0.043975830078125, 0.03973388671875, 0.019775390625, 0.06951904296875, 0.00286865234375, 0.08880615234375, 0.06866455078125, 0....
embed
8114676_c0
8114676
fsharp
0
Title: Overloading function-call-behaviour in F#? Problem title: Overloading function-call-behaviour in F#? Tags: f%23, overloading Problem: Overloading function-call-behaviour in F#? Can it be done? I've been digging around and haven't found anything as to whether or not it is possible. The main reason I want to overl...
Overloading function-call-behaviour in F#? Overloading function-call-behaviour in F#? f%23 overloading Overloading Overloading function-call-behaviour in F#? Can it be done? I've been digging around and haven't found anything as to whether or not it is possible. The main reason I want to overload function call behavior...
[ 0.0225830078125, 0.01318359375, -0.0091552734375, 0.021240234375, 0.000438690185546875, -0.0103759765625, 0.0120849609375, -0.005096435546875, 0.00836181640625, -0.031982421875, 0.00066375732421875, -0.0166015625, -0.00872802734375, 0.01116943359375, 0.0120849609375, -0.012939453125, ...
[ 9578, 63033, 214, 32354, 85763, 372, 98409, 34639, 23, 563, 4904, 32, 1238, 3742, 645, 4171, 442, 186, 16940, 7722, 5201, 31635, 3444, 47, 11782, 123166, 134620, 18151, 4527, 6183, 27140, 170224, 141621, 71358, 4000, 11341, 4488, 678, 7413,...
[ 0.165771484375, 0.2398681640625, 0.05340576171875, 0.2193603515625, 0.209228515625, 0.0740966796875, 0.155517578125, 0.099853515625, 0.05450439453125, 0.138916015625, 0.2197265625, 0.021087646484375, 0.1092529296875, 0.099365234375, 0.156005859375, 0.109619140625, 0.011871337890625, ...
embed
172888_c0
172888
fsharp
0
Title: F# defining/using a type/module in another file in the same project Problem title: F# defining/using a type/module in another file in the same project Tags: f%23 Problem: F# defining/using a type/module in another file in the same project This will hopefully be an easy one. I have an F# project (latest F# CTP) w...
F# defining/using a type/module in another file in the same project F# defining/using a type/module in another file in the same project f%23 a Col Stack F# defining/using a type/module in another file in the same project This will hopefully be an easy one. I have an F# project (latest F# CTP) with two files (Program.fs...
[ 0.005767822265625, 0.00127410888671875, -0.01190185546875, 0.0228271484375, 0.01068115234375, -0.010009765625, 0.01483154296875, -0.00860595703125, 0.004638671875, -0.0198974609375, 0.00116729736328125, -0.00061798095703125, 0.003570556640625, 0.0135498046875, 0.0111083984375, -0.00016...
[ 563, 4904, 13204, 449, 64, 223, 214, 10644, 83279, 23, 15700, 11435, 5701, 13452, 1238, 3742, 11554, 6512, 2594, 23468, 23658, 6626, 102158, 148968, 17447, 8781, 210716, 80934, 9790, 26698, 70, 7663, 8, 18347, 3293, 4488, 18499, 707, 88996,...
[ 0.134033203125, 0.2125244140625, 0.1800537109375, 0.031494140625, 0.0168914794921875, 0.1207275390625, 0.030731201171875, 0.2110595703125, 0.1656494140625, 0.0882568359375, 0.088623046875, 0.1737060546875, 0.0904541015625, 0.139404296875, 0.04534912109375, 0.125, 0.1834716796875, 0...
embed
46305853_c0
46305853
fsharp
0
Title: How to compose bool-returning functions Problem title: How to compose bool-returning functions Tags: function-composition, f%23 Problem: How to compose bool-returning functions I have several filter functions with signature 'a -> bool . I want to create a combined filter that AND's the different filters. I know ...
How to compose bool-returning functions How to compose bool-returning functions function-composition f%23 How Option.bind How to compose bool-returning functions I have several filter functions with signature 'a -> bool . I want to create a combined filter that AND's the different filters. I know I can do it like this:...
[ -0.015869140625, 0.0257568359375, -0.00311279296875, 0.0284423828125, 0.00164031982421875, 0.016357421875, 0.0238037109375, -0.0220947265625, 0.01324462890625, 0.0091552734375, -0.006927490234375, 0.0262451171875, 0.004730224609375, 0.0208740234375, 0.00628662109375, 0.023193359375, ...
[ 11249, 47, 150350, 142484, 9, 65395, 592, 32354, 7, 277, 40322, 1238, 3742, 86769, 5, 89817, 40368, 46312, 138256, 11, 33079, 3444, 28282, 70163, 71, 48762, 12921, 831, 54, 1884, 903, 1286, 318, 3917, 105237, 15490, 59911, 49146, 1022, 80...
[ 0.08880615234375, 0.04339599609375, 0.2459716796875, 0.205322265625, 0.013519287109375, 0.2008056640625, 0.09552001953125, 0.2091064453125, 0.02593994140625, 0.1151123046875, 0.1234130859375, 0.039520263671875, 0.09197998046875, 0.2100830078125, 0.0115966796875, 0.184326171875, 0.042...
embed
25395075_c0
25395075
fsharp
0
Title: F#: Reduce a list of tuples by grouping one of the elements into arrays Problem title: F#: Reduce a list of tuples by grouping one of the elements into arrays Tags: f%23, arrays, tuples, list Problem: F#: Reduce a list of tuples by grouping one of the elements into arrays I have a list of tuples which i want to ...
F#: Reduce a list of tuples by grouping one of the elements into arrays F#: Reduce a list of tuples by grouping one of the elements into arrays f%23 arrays tuples list Reduce F#: Reduce a list of tuples by grouping one of the elements into arrays I have a list of tuples which i want to group by one of its elements as a...
[ 0.020263671875, -0.015380859375, 0.0107421875, 0.02294921875, -0.00909423828125, -0.00885009765625, -0.0179443359375, 0.00121307373046875, 0.02734375, 0.005615234375, 0.00897216796875, 0.00909423828125, -0.0087890625, 0.007080078125, -0.0267333984375, 0.01129150390625, -0.00616455078...
[ 563, 4904, 12, 853, 106357, 5303, 370, 99726, 390, 21115, 214, 1632, 80854, 3934, 10298, 4778, 111, 1238, 3949, 3742, 87, 765, 17, 3444, 237, 10, 22799, 27781, 1902, 903, 1884, 2046, 16750, 3173, 444, 3525, 756, 1810, 25647, 129745, 290...
[ 0.1453857421875, 0.2178955078125, 0.0433349609375, 0.173583984375, 0.2022705078125, 0.160888671875, 0.1468505859375, 0.233642578125, 0.0828857421875, 0.2257080078125, 0.060638427734375, 0.08056640625, 0.1708984375, 0.130126953125, 0.1524658203125, 0.161865234375, 0.048187255859375, ...
embed
40180706_c0
40180706
fsharp
0
Title: Co-prime values in F# Problem title: Co-prime values in F# Tags: f%23, python Problem: Co-prime values in F# I am an F# newbie dealing with a trivial problem. How do I check if two integers are co-prime? I found this pythonic approach really interesting and, IMHO, elegant. I am trying to translate it in F#, with...
Co-prime values in F# Co-prime values in F# f%23 python Co-prime Co-prime values in F# I am an F# newbie dealing with a trivial problem. How do I check if two integers are co-prime? I found this pythonic approach really interesting and, IMHO, elegant. I am trying to translate it in F#, without fortune. It is mainly due...
[ -0.01806640625, 0.01251220703125, 0.006622314453125, 0.00360107421875, 0.015869140625, -0.006988525390625, 0.031982421875, -0.0101318359375, 0.013671875, 0.00506591796875, 0.00128173828125, 0.0247802734375, 0.01171875, 0.0031890869140625, -0.000850677490234375, -0.0028533935546875, -...
[ 1311, 9, 114654, 142424, 563, 4904, 23, 1238, 3949, 3742, 17198, 50828, 3525, 9014, 184017, 686, 2967, 11249, 54, 87, 12765, 2174, 6626, 892, 26255, 621, 552, 51515, 6183, 49041, 17933, 27650, 31577, 3900, 19309, 15490, 100, 45091, 17152, ...
[ 0.2147216796875, 0.086181640625, 0.25830078125, 0.1927490234375, 0.15185546875, 0.248291015625, 0.04119873046875, 0.09210205078125, 0.043975830078125, 0.143310546875, 0.10003662109375, 0.1544189453125, 0.0253448486328125, 0.082275390625, 0.0263214111328125, 0.0165557861328125, 0.0922...
embed
74934702_c1
74934702
fsharp
1
"Count3", "count": 1 }, ], "version": "6.0.0.0", "errorSection": { "validationErrors": [], "code": "200", "message": "Success" } } """ ) In the above example the backing field countResultsLookup is set to the default value readOnlyDict [("", 0)] and countList contains the 3 counts in the JSON. Is there an option to te...
"Count3", "count": 1 }, ], "version": "6.0.0.0", "errorSection": { "validationErrors": [], "code": "200", "message": "Success" } } """ ) In the above example the backing field countResultsLookup is set to the default value readOnlyDict [("", 0)] and countList contains the 3 counts in the JSON. Is there an option to te...
[ 0.01104736328125, 0.026123046875, 0.003021240234375, 0.0002269744873046875, 0.0034637451171875, -0.0252685546875, 0.0030364990234375, 0.000392913818359375, 0.0269775390625, 0.0361328125, -0.0244140625, 0.01708984375, 0.0167236328125, 0.0247802734375, 0.0228271484375, -0.01385498046875,...
[ 108210, 363, 71013, 106, 46354, 910, 2389, 99929, 188800, 58994, 7013, 31611, 40899, 5955, 14168, 238, 26531, 27781, 4420, 214, 44457, 54529, 4332, 10178, 933, 15363, 31, 11322, 5423, 114977, 34292, 12301, 20320, 538, 14055, 15390, 757, 15466...
[ 0.203857421875, 0.1767578125, 0.1468505859375, 0.011749267578125, 0.07489013671875, 0.0193939208984375, 0.049591064453125, 0.072998046875, 0.08795166015625, 0.01800537109375, 0.0419921875, 0.10107421875, 0.0986328125, 0.076904296875, 0.000091552734375, 0.0201873779296875, 0.067321777...
embed
5006792_c0
5006792
fsharp
0
Title: How do I implement an F# Read Eval Print Loop (REPL)? Problem title: How do I implement an F# Read Eval Print Loop (REPL)? Tags: read-eval-print-loop, f%23 Problem: How do I implement an F# Read Eval Print Loop (REPL)? I would like to add an F# REPL to my application for live debugging purposes. I am looking at ...
How do I implement an F# Read Eval Print Loop (REPL)? How do I implement an F# Read Eval Print Loop (REPL)? read-eval-print-loop f%23 How Read Eval Print Loop REPL fsi.exe How do I implement an F# Read Eval Print Loop (REPL)? I would like to add an F# REPL to my application for live debugging purposes. I am looking at ...
[ 0.0021514892578125, -0.003173828125, 0.01385498046875, 0.0196533203125, -0.0034332275390625, 0.0130615234375, 0.02294921875, -0.01153564453125, -0.006500244140625, -0.037353515625, 0.01025390625, 0.00994873046875, -0.00146484375, 0.0172119140625, 0.03271484375, 0.0086669921875, -0.00...
[ 11249, 54, 87, 29479, 563, 4904, 4764, 241, 1405, 39754, 199694, 165547, 866, 142, 12301, 13, 35662, 28354, 1238, 3949, 3742, 9069, 21130, 172, 46480, 1884, 15190, 38415, 100, 6867, 8, 978, 36659, 60042, 16487, 31344, 18151, 919, 5337, 71...
[ 0.08868408203125, 0.02655029296875, 0.0186920166015625, 0.1943359375, 0.1610107421875, 0.203125, 0.2095947265625, 0.1104736328125, 0.22509765625, 0.2020263671875, 0.1949462890625, 0.2059326171875, 0.2364501953125, 0.045562744140625, 0.189453125, 0.0985107421875, 0.1593017578125, 0....
embed
6616078_c1
6616078
fsharp
1
mscorlib"; "TEST"] ["FSharp.Core"; "System"] ["System.Core"; "System.Security"] [] [] And with: ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] Why does the behavior change? How could I make the function generic and achieve the desired behavior? Code signals: Yet...
mscorlib"; "TEST"] ["FSharp.Core"; "System"] ["System.Core"; "System.Security"] [] [] And with: ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] ["mscorlib"; "TEST"] Why does the behavior change? How could I make the function generic and achieve the desired behavior? Code signals: Yet...
[ -0.0240478515625, 0.016357421875, 0.0155029296875, 0.005218505859375, 0.00994873046875, -0.02099609375, -0.0247802734375, 0.004913330078125, 0.00732421875, -0.014892578125, -0.0020294189453125, 0.037353515625, -0.006439208984375, 0.005889892578125, -0.003143310546875, 0.0045166015625, ...
[ 68163, 10517, 5612, 56128, 618, 21828, 36381, 3467, 254, 50886, 13, 84293, 4233, 20287, 678, 4432, 44084, 14602, 70, 123166, 15549, 5809, 3249, 32354, 189534, 69307, 104851, 28864, 26073, 7, 63519, 116267, 190060, 7655, 68185, 864, 48281, 67,...
[ 0.05841064453125, 0.1927490234375, 0.27490234375, 0.061920166015625, 0.14404296875, 0.21435546875, 0.02960205078125, 0.1475830078125, 0.1475830078125, 0.11083984375, 0.0149993896484375, 0.1318359375, 0.0194091796875, 0.1033935546875, 0.09619140625, 0.056884765625, 0.0966796875, 0.0...
embed
33375891_c0
33375891
fsharp
0
Title: Lint: `x &lt;&gt; null`; suggestion consider using pattern matching Problem title: Lint: `x &lt;&gt; null`; suggestion consider using pattern matching Tags: f%23 Problem: Lint: `x <> null`; suggestion consider using pattern matching The Lint of F# power tool suggests using pattern matching to replace x <> null i...
Lint: `x &lt;&gt; null`; suggestion consider using pattern matching Lint: `x &lt;&gt; null`; suggestion consider using pattern matching f%23 pattern Lint obj.method Call ParseRegex Some None Lint: `x <> null`; suggestion consider using pattern matching The Lint of F# power tool suggests using pattern matching to replac...
[ -0.0081787109375, 0.01251220703125, 0.012451171875, 0.00531005859375, -0.01324462890625, 0.0108642578125, 0.00579833984375, 0.0017242431640625, -0.0038909912109375, -0.0089111328125, 0.0211181640625, 0.003753662109375, 0.0029144287109375, 0.00109100341796875, 0.025146484375, -0.0060119...
[ 25497, 18, 425, 1277, 5386, 56574, 199015, 16916, 17368, 103510, 14858, 214, 1238, 3949, 3742, 995, 170, 1928, 7352, 26265, 2392, 184, 54601, 3355, 438, 4426, 2740, 563, 4904, 14537, 55516, 42459, 91995, 1022, 25632, 18151, 3229, 15700, 283...
[ 0.2100830078125, 0.1739501953125, 0.1204833984375, 0.0193939208984375, 0.0823974609375, 0.247314453125, 0.1253662109375, 0.0614013671875, 0.071044921875, 0.23095703125, 0.2069091796875, 0.143798828125, 0.0556640625, 0.022064208984375, 0.1279296875, 0.07080078125, 0.07440185546875, ...
embed
62457929_c0
62457929
fsharp
0
Title: F# linq filter column by null value Problem title: F# linq filter column by null value Tags: ef-core-3.1, entity-framework, f%23 Problem: F# linq filter column by null value in F# query can't make filtering by null work role.CompanyId is nullable column query { for role in roles do where (role.CompanyId = null) ...
F# linq filter column by null value F# linq filter column by null value ef-core-3.1 entity-framework f%23 role.CompanyId Solution api.sln Project Roles.Domain Roles CompanyRoles R.fs:66 Nullable System.Nullable ef-core-3.1 F# linq filter column by null value in F# query can't make filtering by null work role.CompanyId ...
[ 0.0142822265625, -0.001007080078125, 0.01080322265625, 0.00738525390625, -0.013427734375, -0.0152587890625, 0.0252685546875, 0.000202178955078125, -0.00811767578125, -0.000823974609375, 0.00051116943359375, 0.025146484375, -0.0291748046875, 0.006500244140625, -0.018798828125, 0.0015487...
[ 563, 4904, 96, 44982, 46312, 3365, 316, 390, 56574, 34292, 9129, 30854, 97109, 77630, 160328, 1238, 3949, 3742, 31486, 108161, 4848, 568, 71, 187895, 31470, 24861, 27331, 2777, 1577, 24931, 33734, 12724, 17447, 14604, 27786, 2661, 12353, 839,...
[ 0.1180419921875, 0.20849609375, 0.07568359375, 0.23974609375, 0.22802734375, 0.1370849609375, 0.1522216796875, 0.1121826171875, 0.25341796875, 0.1865234375, 0.128662109375, 0.090576171875, 0.154296875, 0.039215087890625, 0.00567626953125, 0.01824951171875, 0.0078125, 0.088500976562...
embed
16981185_c0
16981185
fsharp
0
Title: F# - What is array&lt;&#x27;T&gt;? Problem title: F# - What is array&lt;&#x27;T&gt;? Tags: definition, arrays, f%23 Problem: F# - What is array<'T>? In this previous question I learnt that in F# an array<'T> is not the same as System.Array . VS tells me that array<'T> inherits System.Array and has the full name ...
F# - What is array&lt;&#x27;T&gt;? F# - What is array&lt;&#x27;T&gt;? definition arrays f%23 What System.Array Microsoft.FSharp.Core.array F# - What is array<'T>? In this previous question I learnt that in F# an array<'T> is not the same as System.Array . VS tells me that array<'T> inherits System.Array and has the ful...
[ 0.0166015625, 0.0224609375, 0.00537109375, 0.01068115234375, -0.00174713134765625, -0.01904296875, -0.015625, 0.0111083984375, 0.0047607421875, 0.019287109375, 0.0086669921875, 0.00109100341796875, -0.0230712890625, -0.004486083984375, -0.004852294921875, 0.019775390625, 0.0163574218...
[ 563, 4904, 4865, 83, 10298, 53, 1277, 3768, 618, 5386, 20, 80934, 4778, 1238, 3742, 12353, 7614, 7092, 7244, 36381, 3467, 254, 50886, 13, 19305, 2740, 23, 142, 959, 5701, 44160, 3334, 14481, 9351, 78301, 220237, 51671, 10644, 1563, 105160...
[ 0.165283203125, 0.2646484375, 0.0870361328125, 0.093017578125, 0.2467041015625, 0.2337646484375, 0.0084228515625, 0.0693359375, 0.203125, 0.05877685546875, 0.006561279296875, 0.1534423828125, 0.191650390625, 0.11474609375, 0.0802001953125, 0.169189453125, 0.1436767578125, 0.1936035...
embed
32936987_c0
32936987
fsharp
0
Title: Does the F# library has a standard function for `argMax`? Problem title: Does the F# library has a standard function for `argMax`? Tags: f%23, argmax Problem: Does the F# library has a standard function for `argMax`? I am new to F# and writing some simple algorithm to get used to the language, which needs argMax...
Does the F# library has a standard function for `argMax`? Does the F# library has a standard function for `argMax`? f%23 argmax Does Does the F# library has a standard function for `argMax`? I am new to F# and writing some simple algorithm to get used to the language, which needs argMax . Does the standard library come...
[ 0.0096435546875, 0.000019788742065429688, 0.0174560546875, -0.0106201171875, -0.00019550323486328125, 0.005889892578125, -0.00014781951904296875, 0.0040283203125, 0.0098876953125, -0.021728515625, 0.022216796875, 0.01092529296875, -0.000461578369140625, -0.0091552734375, 0.0255126953125,...
[ 101790, 563, 4904, 35773, 1294, 1556, 5570, 32354, 61477, 71346, 10, 1238, 3949, 3742, 79459, 24084, 100, 234873, 11814, 70, 46876, 27117, 1380, 678, 157318, 5303, 12830, 39771, 20650, 144573, 68991, 1884, 903 ]
[ 0.022705078125, 0.12890625, 0.2197265625, 0.1439208984375, 0.052398681640625, 0.02972412109375, 0.189697265625, 0.2186279296875, 0.199951171875, 0.250244140625, 0.026123046875, 0.115478515625, 0.019012451171875, 0.114990234375, 0.201416015625, 0.21044921875, 0.04248046875, 0.093200...
embed
40215583_c0
40215583
fsharp
0
Title: Scoping assignment Problem title: Scoping assignment Tags: f%23 Problem: Scoping assignment I am still trying to get the mindset for functional programming, hence I am not sure the question is meaningful: is scoping assignment possible in F# as it is in R? Let' suppose I am designing a function split x when x = ...
Scoping assignment Scoping assignment f%23 Scoping int:y int:z Scoping assignment I am still trying to get the mindset for functional programming, hence I am not sure the question is meaningful: is scoping assignment possible in F# as it is in R? Let' suppose I am designing a function split x when x = y + 10z for abs(i...
[ -0.006744384765625, 0.01019287109375, -0.0027008056640625, 0.0228271484375, 0.00016307830810546875, 0.003387451171875, 0.016357421875, 0.0235595703125, 0.00787353515625, 0.032470703125, 0.0341796875, 0.0218505859375, -0.0034637451171875, 0.0006866455078125, 0.0269775390625, 0.012329101...
[ 182783, 214, 95486, 674, 1238, 3949, 3742, 23, 18, 53, 169, 7086, 3509, 123309, 56037, 91084, 83, 44679, 7722, 563, 4904, 237, 627, 4331, 32354, 65450, 1022, 3229, 113, 997, 209, 43719, 4288, 4426, 190, 136, 88996, 97, 167785, 7068, 188...
[ 0.253173828125, 0.1439208984375, 0.2454833984375, 0.08953857421875, 0.1148681640625, 0.0831298828125, 0.1522216796875, 0.062347412109375, 0.0928955078125, 0.116455078125, 0.158203125, 0.022796630859375, 0.042694091796875, 0.1466064453125, 0.0927734375, 0.0270233154296875, 0.062103271...
embed
65329449_c0
65329449
fsharp
0
Title: Speed up F# compile with Reference Assembly Problem title: Speed up F# compile with Reference Assembly Tags: fsc, f%23 Problem: Speed up F# compile with Reference Assembly I thought I'd try out speeding up my compiles with Reference Assemblies. So I add this to my projects: <ProduceReferenceAssembly>true</Produc...
Speed up F# compile with Reference Assembly Speed up F# compile with Reference Assembly fsc f%23 Speed Reference Assembly ProduceReferenceAssembly Deterministic Expected Debug net5.0 xyz.dll Speed up F# compile with Reference Assembly I thought I'd try out speeding up my compiles with Reference Assemblies. So I add thi...
[ -0.01446533203125, 0.01953125, 0.01458740234375, 0.004486083984375, -0.0115966796875, -0.0208740234375, -0.031982421875, 0.0036163330078125, -0.0128173828125, 0.006561279296875, -0.001373291015625, 0.005584716796875, 0.0107421875, 0.028564453125, 0.00799560546875, 0.0018157958984375, ...
[ 63349, 1257, 563, 4904, 9969, 1340, 678, 215996, 151169, 53, 1238, 10382, 3949, 3742, 103687, 4332, 69988, 89845, 262, 30524, 48242, 60075, 13, 85779, 2043, 187461, 1022, 32189, 71, 1181, 17569, 9790, 38352, 214, 3387, 15190, 903, 77635, 10...
[ 0.1827392578125, 0.118408203125, 0.151123046875, 0.2314453125, 0.158447265625, 0.1409912109375, 0.05810546875, 0.26806640625, 0.23388671875, 0.04583740234375, 0.05694580078125, 0.07330322265625, 0.005950927734375, 0.098388671875, 0.118408203125, 0.02227783203125, 0.134765625, 0.190...
embed
66063445_c0
66063445
fsharp
0
Title: What exactly is the return type of the printfn function in F#? Problem title: What exactly is the return type of the printfn function in F#? Tags: f%23 Problem: What exactly is the return type of the printfn function in F#? I looked up the documentation of printfn here and this is what it says: printfn format Pr...
What exactly is the return type of the printfn function in F#? What exactly is the return type of the printfn function in F#? f%23 What Hello What exactly is the return type of the printfn function in F#? I looked up the documentation of printfn here and this is what it says: But if I type the following in FSI it state...
[ 0.01324462890625, 0.00081634521484375, 0.0244140625, 0.01904296875, -0.01080322265625, -0.0009765625, 0.00970458984375, -0.00982666015625, 0.0013275146484375, 0.00482177734375, 0.0123291015625, -0.0225830078125, -0.00823974609375, -0.0162353515625, -0.000896453857421875, 0.002777099609...
[ 4865, 66161, 30646, 10644, 28412, 14783, 32354, 23, 563, 4904, 83, 1238, 3949, 3742, 35378, 70, 111, 209806, 25632, 9902, 117249, 81, 34292, 25072, 6892, 4358 ]
[ 0.0188751220703125, 0.10467529296875, 0.214599609375, 0.1939697265625, 0.201904296875, 0.24951171875, 0.1436767578125, 0.0518798828125, 0.1171875, 0.195068359375, 0.0275115966796875, 0.0792236328125, 0.002899169921875, 0.1082763671875, 0.061187744140625, 0.0157470703125, 0.0431823730...
embed
69867438_c0
69867438
fsharp
0
Title: I can&#x27;t access code from subdirectories in F# Problem title: I can&#x27;t access code from subdirectories in F# Tags: f%23 Problem: I can't access code from subdirectories in F# I am trying to get my head around how F# code is organised. I understand that in a folder or main directory - to access code from ...
I can&#x27;t access code from subdirectories in F# I can&#x27;t access code from subdirectories in F# f%23 subdirectories I can't access code from subdirectories in F# I am trying to get my head around how F# code is organised. I understand that in a folder or main directory - to access code from a different file, the ...
[ 0.006256103515625, 0.01336669921875, 0.0172119140625, 0.0120849609375, -0.01507568359375, -0.00138092041015625, 0.00179290771484375, 0.01251220703125, 0.00408935546875, -0.00182342529296875, -0.0177001953125, 0.0201416015625, 0.0189208984375, 0.031494140625, 0.0010833740234375, -0.0187...
[ 87, 831, 3768, 18, 17203, 18151, 1295, 1614, 80581, 31, 10484, 563, 4904, 23, 1238, 3742, 131168, 28219, 78303, 5201, 14364, 12921, 11435, 8110, 36917, 442, 25813, 1257, 7565, 10544, 1328, 53234, 8331, 7710, 10422, 31901, 30675, 959, 108975...
[ 0.0230560302734375, 0.056549072265625, 0.048858642578125, 0.05389404296875, 0.1771240234375, 0.244384765625, 0.1195068359375, 0.2174072265625, 0.190185546875, 0.08233642578125, 0.078125, 0.1318359375, 0.2144775390625, 0.0215606689453125, 0.06451416015625, 0.03033447265625, 0.16052246...
embed
28643628_c0
28643628
fsharp
0
Title: List.zip F# Command Problem title: List.zip F# Command Tags: list, f%23 Problem: List.zip F# Command Show the institution and the subject where at least 100% of students agree or strongly agreed with the question 12 let Q6 = data |> List.filter (fun r -> question r = 12) |> List.filter (fun r -> score r >= 100) ...
List.zip F# Command List.zip F# Command list f%23 List.zip Command List.filter List.map Q6i List.zip F# Command Show the institution and the subject where at least 100% of students agree or strongly agreed with the question 12 Could anyone possibly tell me if there's another way of doing this or if its the correct proc...
[ 0.006011962890625, 0.012451171875, 0.00146484375, 0.021728515625, -0.000659942626953125, -0.00531005859375, 0.0089111328125, -0.006805419921875, 0.020263671875, -0.00921630859375, 0.021728515625, 0.0189208984375, -0.0047607421875, -0.00927734375, -0.0279541015625, 0.0274658203125, 0....
[ 32036, 50836, 563, 4904, 123573, 5303, 1238, 3949, 3742, 120337, 62346, 2396, 910, 14, 17367, 70, 38016, 136, 28368, 7440, 19713, 3555, 25921, 53520, 707, 37515, 176506, 678, 9655, 427, 35672, 144681, 14192, 163, 15700, 3917, 20594, 903, 26...
[ 0.2481689453125, 0.2281494140625, 0.1241455078125, 0.186279296875, 0.2342529296875, 0.2120361328125, 0.070556640625, 0.012908935546875, 0.1402587890625, 0.1917724609375, 0.134765625, 0.0675048828125, 0.08013916015625, 0.07830810546875, 0.1868896484375, 0.026214599609375, 0.2110595703...
embed
61945746_c0
61945746
fsharp
0
Title: F# Does MailboxProcessor.PostAndReply blocks Post? Problem title: F# Does MailboxProcessor.PostAndReply blocks Post? Tags: f%23, mailboxprocessor Problem: F# Does MailboxProcessor.PostAndReply blocks Post? Let's say that I call MailboxProcessor.PostAndReply , which may run for a very long time due to whatever re...
F# Does MailboxProcessor.PostAndReply blocks Post? F# Does MailboxProcessor.PostAndReply blocks Post? f%23 mailboxprocessor Does MailboxProcessor.PostAndReply Post MailboxProcessor.Post F# Does MailboxProcessor.PostAndReply blocks Post? Let's say that I call MailboxProcessor.PostAndReply , which may run for a very long...
[ -0.00933837890625, 0.025634765625, 0.0029449462890625, 0.0107421875, -0.01708984375, -0.003997802734375, 0.015869140625, 0.0084228515625, 0.007049560546875, -0.016357421875, 0.00885009765625, 0.0284423828125, -0.00347900390625, -0.00079345703125, 0.0089111328125, 0.025390625, 0.02844...
[ 563, 4904, 101790, 25919, 11728, 10752, 26531, 748, 49411, 37839, 4332, 62479, 46389, 2795, 1238, 3742, 6648, 63923, 5, 11782, 11675, 4989, 1733, 53383, 1295, 3789, 86997, 12960, 5117, 1556, 959, 176377, 14373, 3034, 89011, 16648, 132894, 333...
[ 0.0440673828125, 0.126220703125, 0.036407470703125, 0.0748291015625, 0.1734619140625, 0.07830810546875, 0.1357421875, 0.1463623046875, 0.137451171875, 0.1336669921875, 0.066650390625, 0.1640625, 0.2125244140625, 0.1744384765625, 0.002166748046875, 0.03070068359375, 0.05474853515625, ...
embed
5654134_c0
5654134
fsharp
0
Title: F# launch a script from another script with F# Interactive Problem title: F# launch a script from another script with F# Interactive Tags: f%23, scripting, f%23-interactive Problem: F# launch a script from another script with F# Interactive I can't seem to find a way to do this. Basically I want to do this in ps...
F# launch a script from another script with F# Interactive F# launch a script from another script with F# Interactive f%23 scripting f%23-interactive another Interactive F# launch a script from another script with F# Interactive I can't seem to find a way to do this. Basically I want to do this in pseudocode: MainScrip...
[ 0.0186767578125, 0.009521484375, 0.0091552734375, 0.0172119140625, -0.0072021484375, -0.00933837890625, 0.01611328125, 0.0020599365234375, 0.007354736328125, -0.0281982421875, 0.007110595703125, 0.00933837890625, -0.004669189453125, 0.033203125, 0.027587890625, -0.01141357421875, 0.0...
[ 563, 4904, 83184, 26499, 1295, 15700, 678, 5337, 71232, 1238, 3742, 27495, 10433, 10, 3917, 54, 903, 3444, 74189, 40899, 12321, 147845, 17447, 425, 84654, 418, 5, 70, 140992, 76896, 5608, 7639, 46327, 51042, 55300, 29479 ]
[ 0.13134765625, 0.19482421875, 0.2220458984375, 0.271728515625, 0.1864013671875, 0.1422119140625, 0.0716552734375, 0.13623046875, 0.1741943359375, 0.0960693359375, 0.106689453125, 0.093994140625, 0.1044921875, 0.0238494873046875, 0.01177978515625, 0.038238525390625, 0.02947998046875, ...
embed