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;








1















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)









share|improve this question

















  • 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












  • @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

















1















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)









share|improve this question

















  • 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












  • @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













1












1








1








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)









share|improve this question














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#






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 12:27









DenkiDenki

11612 bronze badges




11612 bronze badges







  • 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












  • @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





    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







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












1 Answer
1






active

oldest

votes


















3














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]





share|improve this answer






















    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
    );



    );













    draft saved

    draft discarded


















    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









    3














    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]





    share|improve this answer



























      3














      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]





      share|improve this answer

























        3












        3








        3







        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]





        share|improve this answer













        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]






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 26 at 13:23









        LeeLee

        123k15 gold badges181 silver badges251 bronze badges




        123k15 gold badges181 silver badges251 bronze badges
















            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.



















            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

            밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

            1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴