The value or constructor is not definedF# design patternWhy do Record types oblige you to define its members types?Best approach for designing F# libraries for use from both F# and C#When to use a Discriminate Union vs Record Type in F#F# Tree Puzzle - Value or constructor “TreeNode” is not foundIn F#, How can I attach metadata to discriminated union values?Why can't we satisfy F# static member constraints with type extensions?Get the memory size of a value of an F# typeGeneric method on recordF# return size of input defined as number of constructors
What is the minimum wait before I may I re-enter the USA after a 90 day visit on the Visa B-2 Program?
TCP connections hang during handshake
Applying for jobs when I have an obvious scar
Can two waves interfere head on?
Will copper pour help on my single-layer PCB?
Does unblocking power bar outlets through short extension cords increase fire risk?
Host telling me to cancel my booking in exchange for a discount?
ESTA Travel not Authorized. Accepted twice before!
Improving an O(N^2) function (all entities iterating over all other entities)
Ethiopian Airlines tickets seem to always have the same price regardless of the proximity of the date?
Trivial non-dark twist in dark fantasy
A bicolour masyu
What does "play in traffic" mean?
What is the origin of "Wonder begets wisdom?"
Why should fork() have been designed to return a file descriptor?
How does the Gameboy's memory bank switching work?
How to tell readers that I know my story is factually incorrect?
What does a Nintendo Game Boy do when turned on without a game cartridge inserted?
Is it ethical to tell my teaching assistant that I like him?
Making an example from 'Clean Code' more functional
What is the difference between uniform velocity and constant velocity?
Book in which the "mountain" in the distance was a hole in the flat world
Fast algorithm for finding all solutions of simple equation involving only addition of terms from list
How far off did Apollo 11 land?
The value or constructor is not defined
F# design patternWhy do Record types oblige you to define its members types?Best approach for designing F# libraries for use from both F# and C#When to use a Discriminate Union vs Record Type in F#F# Tree Puzzle - Value or constructor “TreeNode” is not foundIn F#, How can I attach metadata to discriminated union values?Why can't we satisfy F# static member constraints with type extensions?Get the memory size of a value of an F# typeGeneric method on recordF# return size of input defined as number of constructors
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have defined both records and created a union from them, but F# still complains that the constructor "Food" is not defined. What is the problem?
type Product = Name : string; BasePrice: int
type Size = Medium: int; Large: int
type Food = | Product of Product| Size of Size
let food = Food(Name = "Bagel"; BasePrice = 20; Medium = 10; Large = 20)
f#
add a comment |
I have defined both records and created a union from them, but F# still complains that the constructor "Food" is not defined. What is the problem?
type Product = Name : string; BasePrice: int
type Size = Medium: int; Large: int
type Food = | Product of Product| Size of Size
let food = Food(Name = "Bagel"; BasePrice = 20; Medium = 10; Large = 20)
f#
3
Food
is a type not a constructor, you need something likelet food = Product Name = "Bagel"; BasePrice = 20
. Are you trying to build alist Food
?
– Lee
Mar 26 at 12:42
@Lee I think you have the correct answer. Pls, add it as an answer to this question. This way Denki can mark it as the correct answer and this will add to your reputation.
– norbertB
Mar 26 at 13:16
add a comment |
I have defined both records and created a union from them, but F# still complains that the constructor "Food" is not defined. What is the problem?
type Product = Name : string; BasePrice: int
type Size = Medium: int; Large: int
type Food = | Product of Product| Size of Size
let food = Food(Name = "Bagel"; BasePrice = 20; Medium = 10; Large = 20)
f#
I have defined both records and created a union from them, but F# still complains that the constructor "Food" is not defined. What is the problem?
type Product = Name : string; BasePrice: int
type Size = Medium: int; Large: int
type Food = | Product of Product| Size of Size
let food = Food(Name = "Bagel"; BasePrice = 20; Medium = 10; Large = 20)
f#
f#
asked Mar 26 at 12:27
DenkiDenki
11612 bronze badges
11612 bronze badges
3
Food
is a type not a constructor, you need something likelet food = Product Name = "Bagel"; BasePrice = 20
. Are you trying to build alist Food
?
– Lee
Mar 26 at 12:42
@Lee I think you have the correct answer. Pls, add it as an answer to this question. This way Denki can mark it as the correct answer and this will add to your reputation.
– norbertB
Mar 26 at 13:16
add a comment |
3
Food
is a type not a constructor, you need something likelet food = Product Name = "Bagel"; BasePrice = 20
. Are you trying to build alist Food
?
– Lee
Mar 26 at 12:42
@Lee I think you have the correct answer. Pls, add it as an answer to this question. This way Denki can mark it as the correct answer and this will add to your reputation.
– norbertB
Mar 26 at 13:16
3
3
Food
is a type not a constructor, you need something like let food = Product Name = "Bagel"; BasePrice = 20
. Are you trying to build a list Food
?– Lee
Mar 26 at 12:42
Food
is a type not a constructor, you need something like let food = Product Name = "Bagel"; BasePrice = 20
. Are you trying to build a list Food
?– Lee
Mar 26 at 12:42
@Lee I think you have the correct answer. Pls, add it as an answer to this question. This way Denki can mark it as the correct answer and this will add to your reputation.
– norbertB
Mar 26 at 13:16
@Lee I think you have the correct answer. Pls, add it as an answer to this question. This way Denki can mark it as the correct answer and this will add to your reputation.
– norbertB
Mar 26 at 13:16
add a comment |
1 Answer
1
active
oldest
votes
Food
is a type, not a constructor - to create a value of type Food
you need to use one of the constructors Product
or Size
. It looks like you're trying to construct a list Food
, in which case you can use:
let food = [Product Name = "Bagel"; BasePrice = 20; Size Medium = 10; Large = 20]
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55357163%2fthe-value-or-constructor-is-not-defined%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Food
is a type, not a constructor - to create a value of type Food
you need to use one of the constructors Product
or Size
. It looks like you're trying to construct a list Food
, in which case you can use:
let food = [Product Name = "Bagel"; BasePrice = 20; Size Medium = 10; Large = 20]
add a comment |
Food
is a type, not a constructor - to create a value of type Food
you need to use one of the constructors Product
or Size
. It looks like you're trying to construct a list Food
, in which case you can use:
let food = [Product Name = "Bagel"; BasePrice = 20; Size Medium = 10; Large = 20]
add a comment |
Food
is a type, not a constructor - to create a value of type Food
you need to use one of the constructors Product
or Size
. It looks like you're trying to construct a list Food
, in which case you can use:
let food = [Product Name = "Bagel"; BasePrice = 20; Size Medium = 10; Large = 20]
Food
is a type, not a constructor - to create a value of type Food
you need to use one of the constructors Product
or Size
. It looks like you're trying to construct a list Food
, in which case you can use:
let food = [Product Name = "Bagel"; BasePrice = 20; Size Medium = 10; Large = 20]
answered Mar 26 at 13:23
LeeLee
123k15 gold badges181 silver badges251 bronze badges
123k15 gold badges181 silver badges251 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55357163%2fthe-value-or-constructor-is-not-defined%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Food
is a type not a constructor, you need something likelet food = Product Name = "Bagel"; BasePrice = 20
. Are you trying to build alist Food
?– Lee
Mar 26 at 12:42
@Lee I think you have the correct answer. Pls, add it as an answer to this question. This way Denki can mark it as the correct answer and this will add to your reputation.
– norbertB
Mar 26 at 13:16