What is the best way in Swift 4+ to store a set of homogenous arrays for various types in a dictionary?












7















Consider a situation where we want to have a dictionary of arrays, with each array being a homogeneous collection of values of some type (which may be a struct or a primitive type). I'm currently using the ObjectIdentifier of the type defining it thusly:



let pInts : [UInt32] = [4, 6, 99, 1001, 2032]
let pFloats : [Float] = [3.14159, 8.9]
let pBools : [Bool] = [true, false, true]

let myDataStructure : [ObjectIdentifier : [Any]] = [
ObjectIdentifier(Float.self) : pFloats,
ObjectIdentifier(UInt32.self) : pInts,
ObjectIdentifier(Bool.self) : pBools
]


The issue here is that when traversing the data structure, Swift doesn't know that the objects in each list are homogeneous. Since swift is statically typed, I'm guessing it is not possible to typecast the [Any] lists using the ObjectIdentifier keys. Consider this traversal pseudocode:



for (typeObjId, listOfValuesOfSometype) in myDataStructure {
// do something like swap values around in the array,
// knowing they are homogeneously but anonymously typed
}


So, is there some metatype machinery I can concoct to represent this data structure in a way that does not anticipate the list of actual types that will have arrays in it?










share|improve this question




















  • 1





    Is an enum with associated types an option? e.g. enum ObjectIdentifier { case ints([UInt32]), floats([Float]), bools([Bool]) }

    – vadian
    Nov 20 '18 at 18:34













  • Interesting question. I don’t think this is possible either. Why do you need this? Maybe there is a different way to achieve your actual goal.

    – Sven
    Nov 20 '18 at 18:51
















7















Consider a situation where we want to have a dictionary of arrays, with each array being a homogeneous collection of values of some type (which may be a struct or a primitive type). I'm currently using the ObjectIdentifier of the type defining it thusly:



let pInts : [UInt32] = [4, 6, 99, 1001, 2032]
let pFloats : [Float] = [3.14159, 8.9]
let pBools : [Bool] = [true, false, true]

let myDataStructure : [ObjectIdentifier : [Any]] = [
ObjectIdentifier(Float.self) : pFloats,
ObjectIdentifier(UInt32.self) : pInts,
ObjectIdentifier(Bool.self) : pBools
]


The issue here is that when traversing the data structure, Swift doesn't know that the objects in each list are homogeneous. Since swift is statically typed, I'm guessing it is not possible to typecast the [Any] lists using the ObjectIdentifier keys. Consider this traversal pseudocode:



for (typeObjId, listOfValuesOfSometype) in myDataStructure {
// do something like swap values around in the array,
// knowing they are homogeneously but anonymously typed
}


So, is there some metatype machinery I can concoct to represent this data structure in a way that does not anticipate the list of actual types that will have arrays in it?










share|improve this question




















  • 1





    Is an enum with associated types an option? e.g. enum ObjectIdentifier { case ints([UInt32]), floats([Float]), bools([Bool]) }

    – vadian
    Nov 20 '18 at 18:34













  • Interesting question. I don’t think this is possible either. Why do you need this? Maybe there is a different way to achieve your actual goal.

    – Sven
    Nov 20 '18 at 18:51














7












7








7








Consider a situation where we want to have a dictionary of arrays, with each array being a homogeneous collection of values of some type (which may be a struct or a primitive type). I'm currently using the ObjectIdentifier of the type defining it thusly:



let pInts : [UInt32] = [4, 6, 99, 1001, 2032]
let pFloats : [Float] = [3.14159, 8.9]
let pBools : [Bool] = [true, false, true]

let myDataStructure : [ObjectIdentifier : [Any]] = [
ObjectIdentifier(Float.self) : pFloats,
ObjectIdentifier(UInt32.self) : pInts,
ObjectIdentifier(Bool.self) : pBools
]


The issue here is that when traversing the data structure, Swift doesn't know that the objects in each list are homogeneous. Since swift is statically typed, I'm guessing it is not possible to typecast the [Any] lists using the ObjectIdentifier keys. Consider this traversal pseudocode:



for (typeObjId, listOfValuesOfSometype) in myDataStructure {
// do something like swap values around in the array,
// knowing they are homogeneously but anonymously typed
}


So, is there some metatype machinery I can concoct to represent this data structure in a way that does not anticipate the list of actual types that will have arrays in it?










share|improve this question
















Consider a situation where we want to have a dictionary of arrays, with each array being a homogeneous collection of values of some type (which may be a struct or a primitive type). I'm currently using the ObjectIdentifier of the type defining it thusly:



let pInts : [UInt32] = [4, 6, 99, 1001, 2032]
let pFloats : [Float] = [3.14159, 8.9]
let pBools : [Bool] = [true, false, true]

let myDataStructure : [ObjectIdentifier : [Any]] = [
ObjectIdentifier(Float.self) : pFloats,
ObjectIdentifier(UInt32.self) : pInts,
ObjectIdentifier(Bool.self) : pBools
]


The issue here is that when traversing the data structure, Swift doesn't know that the objects in each list are homogeneous. Since swift is statically typed, I'm guessing it is not possible to typecast the [Any] lists using the ObjectIdentifier keys. Consider this traversal pseudocode:



for (typeObjId, listOfValuesOfSometype) in myDataStructure {
// do something like swap values around in the array,
// knowing they are homogeneously but anonymously typed
}


So, is there some metatype machinery I can concoct to represent this data structure in a way that does not anticipate the list of actual types that will have arrays in it?







swift dictionary metatype






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 16:35







Fooberman

















asked Nov 20 '18 at 18:19









FoobermanFooberman

369212




369212








  • 1





    Is an enum with associated types an option? e.g. enum ObjectIdentifier { case ints([UInt32]), floats([Float]), bools([Bool]) }

    – vadian
    Nov 20 '18 at 18:34













  • Interesting question. I don’t think this is possible either. Why do you need this? Maybe there is a different way to achieve your actual goal.

    – Sven
    Nov 20 '18 at 18:51














  • 1





    Is an enum with associated types an option? e.g. enum ObjectIdentifier { case ints([UInt32]), floats([Float]), bools([Bool]) }

    – vadian
    Nov 20 '18 at 18:34













  • Interesting question. I don’t think this is possible either. Why do you need this? Maybe there is a different way to achieve your actual goal.

    – Sven
    Nov 20 '18 at 18:51








1




1





Is an enum with associated types an option? e.g. enum ObjectIdentifier { case ints([UInt32]), floats([Float]), bools([Bool]) }

– vadian
Nov 20 '18 at 18:34







Is an enum with associated types an option? e.g. enum ObjectIdentifier { case ints([UInt32]), floats([Float]), bools([Bool]) }

– vadian
Nov 20 '18 at 18:34















Interesting question. I don’t think this is possible either. Why do you need this? Maybe there is a different way to achieve your actual goal.

– Sven
Nov 20 '18 at 18:51





Interesting question. I don’t think this is possible either. Why do you need this? Maybe there is a different way to achieve your actual goal.

– Sven
Nov 20 '18 at 18:51












1 Answer
1






active

oldest

votes


















0














I'm not exactly sure what you want to accomplish, Inside the dictionary loop the arrays will always be of type Any, but if you want to move items in the arrays around, you could just do that. Just reassign the array first to a var and then put it back in the dictionary.



If you do want to loop through the items of a specific type, then you could use the array helper function below.



func testX() {
let pInts: [UInt32] = [4, 6, 99, 1001, 2032]
let pFloats: [Float] = [3.14159, 8.9]
let pBools: [Bool] = [true, false, true]

var myDataStructure: [ObjectIdentifier: [Any]] = [
ObjectIdentifier(Float.self): pFloats,
ObjectIdentifier(UInt32.self): pInts,
ObjectIdentifier(Bool.self): pBools
]

// Swap the first 2 items of every array
for d in myDataStructure {
var i = d.value
if i.count > 1 {
let s = i[0]
i[0] = i[1]
i[1] = s
}
myDataStructure[d.key] = i
}

// Now dump all data per specific type using the array helper function.
for i: UInt32 in array(myDataStructure) {
print(i)
}
for i: Float in array(myDataStructure) {
print(i)
}
for i: Bool in array(myDataStructure) {
print(i)
}
}

func array<T>(_ data: [ObjectIdentifier: [Any]]) -> [T] {
return data[ObjectIdentifier(T.self)] as? [T] ??
}





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%2f53399171%2fwhat-is-the-best-way-in-swift-4-to-store-a-set-of-homogenous-arrays-for-various%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









    0














    I'm not exactly sure what you want to accomplish, Inside the dictionary loop the arrays will always be of type Any, but if you want to move items in the arrays around, you could just do that. Just reassign the array first to a var and then put it back in the dictionary.



    If you do want to loop through the items of a specific type, then you could use the array helper function below.



    func testX() {
    let pInts: [UInt32] = [4, 6, 99, 1001, 2032]
    let pFloats: [Float] = [3.14159, 8.9]
    let pBools: [Bool] = [true, false, true]

    var myDataStructure: [ObjectIdentifier: [Any]] = [
    ObjectIdentifier(Float.self): pFloats,
    ObjectIdentifier(UInt32.self): pInts,
    ObjectIdentifier(Bool.self): pBools
    ]

    // Swap the first 2 items of every array
    for d in myDataStructure {
    var i = d.value
    if i.count > 1 {
    let s = i[0]
    i[0] = i[1]
    i[1] = s
    }
    myDataStructure[d.key] = i
    }

    // Now dump all data per specific type using the array helper function.
    for i: UInt32 in array(myDataStructure) {
    print(i)
    }
    for i: Float in array(myDataStructure) {
    print(i)
    }
    for i: Bool in array(myDataStructure) {
    print(i)
    }
    }

    func array<T>(_ data: [ObjectIdentifier: [Any]]) -> [T] {
    return data[ObjectIdentifier(T.self)] as? [T] ??
    }





    share|improve this answer




























      0














      I'm not exactly sure what you want to accomplish, Inside the dictionary loop the arrays will always be of type Any, but if you want to move items in the arrays around, you could just do that. Just reassign the array first to a var and then put it back in the dictionary.



      If you do want to loop through the items of a specific type, then you could use the array helper function below.



      func testX() {
      let pInts: [UInt32] = [4, 6, 99, 1001, 2032]
      let pFloats: [Float] = [3.14159, 8.9]
      let pBools: [Bool] = [true, false, true]

      var myDataStructure: [ObjectIdentifier: [Any]] = [
      ObjectIdentifier(Float.self): pFloats,
      ObjectIdentifier(UInt32.self): pInts,
      ObjectIdentifier(Bool.self): pBools
      ]

      // Swap the first 2 items of every array
      for d in myDataStructure {
      var i = d.value
      if i.count > 1 {
      let s = i[0]
      i[0] = i[1]
      i[1] = s
      }
      myDataStructure[d.key] = i
      }

      // Now dump all data per specific type using the array helper function.
      for i: UInt32 in array(myDataStructure) {
      print(i)
      }
      for i: Float in array(myDataStructure) {
      print(i)
      }
      for i: Bool in array(myDataStructure) {
      print(i)
      }
      }

      func array<T>(_ data: [ObjectIdentifier: [Any]]) -> [T] {
      return data[ObjectIdentifier(T.self)] as? [T] ??
      }





      share|improve this answer


























        0












        0








        0







        I'm not exactly sure what you want to accomplish, Inside the dictionary loop the arrays will always be of type Any, but if you want to move items in the arrays around, you could just do that. Just reassign the array first to a var and then put it back in the dictionary.



        If you do want to loop through the items of a specific type, then you could use the array helper function below.



        func testX() {
        let pInts: [UInt32] = [4, 6, 99, 1001, 2032]
        let pFloats: [Float] = [3.14159, 8.9]
        let pBools: [Bool] = [true, false, true]

        var myDataStructure: [ObjectIdentifier: [Any]] = [
        ObjectIdentifier(Float.self): pFloats,
        ObjectIdentifier(UInt32.self): pInts,
        ObjectIdentifier(Bool.self): pBools
        ]

        // Swap the first 2 items of every array
        for d in myDataStructure {
        var i = d.value
        if i.count > 1 {
        let s = i[0]
        i[0] = i[1]
        i[1] = s
        }
        myDataStructure[d.key] = i
        }

        // Now dump all data per specific type using the array helper function.
        for i: UInt32 in array(myDataStructure) {
        print(i)
        }
        for i: Float in array(myDataStructure) {
        print(i)
        }
        for i: Bool in array(myDataStructure) {
        print(i)
        }
        }

        func array<T>(_ data: [ObjectIdentifier: [Any]]) -> [T] {
        return data[ObjectIdentifier(T.self)] as? [T] ??
        }





        share|improve this answer













        I'm not exactly sure what you want to accomplish, Inside the dictionary loop the arrays will always be of type Any, but if you want to move items in the arrays around, you could just do that. Just reassign the array first to a var and then put it back in the dictionary.



        If you do want to loop through the items of a specific type, then you could use the array helper function below.



        func testX() {
        let pInts: [UInt32] = [4, 6, 99, 1001, 2032]
        let pFloats: [Float] = [3.14159, 8.9]
        let pBools: [Bool] = [true, false, true]

        var myDataStructure: [ObjectIdentifier: [Any]] = [
        ObjectIdentifier(Float.self): pFloats,
        ObjectIdentifier(UInt32.self): pInts,
        ObjectIdentifier(Bool.self): pBools
        ]

        // Swap the first 2 items of every array
        for d in myDataStructure {
        var i = d.value
        if i.count > 1 {
        let s = i[0]
        i[0] = i[1]
        i[1] = s
        }
        myDataStructure[d.key] = i
        }

        // Now dump all data per specific type using the array helper function.
        for i: UInt32 in array(myDataStructure) {
        print(i)
        }
        for i: Float in array(myDataStructure) {
        print(i)
        }
        for i: Bool in array(myDataStructure) {
        print(i)
        }
        }

        func array<T>(_ data: [ObjectIdentifier: [Any]]) -> [T] {
        return data[ObjectIdentifier(T.self)] as? [T] ??
        }






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 22 '18 at 5:56









        Edwin VermeerEdwin Vermeer

        11k22551




        11k22551






























            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%2f53399171%2fwhat-is-the-best-way-in-swift-4-to-store-a-set-of-homogenous-arrays-for-various%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

            MongoDB - Not Authorized To Execute Command

            Npm cannot find a required file even through it is in the searched directory

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith