Word to mean 'seek through, one element at a time'












1














I'm looking for a word to describe the process that a computer program performs when



searching through a dataset bit by bit.



I had believed the word parse ('to parse through the data') was correct. However, it seems that the word parse actually means 'to split into pieces'.



I'm thinking of something along the lines of trawl, seek, step through etc. I just wonder if there is a more elegant word/phrase that I could use.










share|improve this question
























  • Perhaps, this could have been asked on SO/ programmersSE.
    – Kris
    Jul 4 '13 at 6:05
















1














I'm looking for a word to describe the process that a computer program performs when



searching through a dataset bit by bit.



I had believed the word parse ('to parse through the data') was correct. However, it seems that the word parse actually means 'to split into pieces'.



I'm thinking of something along the lines of trawl, seek, step through etc. I just wonder if there is a more elegant word/phrase that I could use.










share|improve this question
























  • Perhaps, this could have been asked on SO/ programmersSE.
    – Kris
    Jul 4 '13 at 6:05














1












1








1







I'm looking for a word to describe the process that a computer program performs when



searching through a dataset bit by bit.



I had believed the word parse ('to parse through the data') was correct. However, it seems that the word parse actually means 'to split into pieces'.



I'm thinking of something along the lines of trawl, seek, step through etc. I just wonder if there is a more elegant word/phrase that I could use.










share|improve this question















I'm looking for a word to describe the process that a computer program performs when



searching through a dataset bit by bit.



I had believed the word parse ('to parse through the data') was correct. However, it seems that the word parse actually means 'to split into pieces'.



I'm thinking of something along the lines of trawl, seek, step through etc. I just wonder if there is a more elegant word/phrase that I could use.







single-word-requests phrase-requests programming






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 10 '13 at 6:48









Kris

32.5k541117




32.5k541117










asked Jul 3 '13 at 15:32









CaptainProgCaptainProg

1756




1756












  • Perhaps, this could have been asked on SO/ programmersSE.
    – Kris
    Jul 4 '13 at 6:05


















  • Perhaps, this could have been asked on SO/ programmersSE.
    – Kris
    Jul 4 '13 at 6:05
















Perhaps, this could have been asked on SO/ programmersSE.
– Kris
Jul 4 '13 at 6:05




Perhaps, this could have been asked on SO/ programmersSE.
– Kris
Jul 4 '13 at 6:05










4 Answers
4






active

oldest

votes


















4














Iterate is the word that's generally used for this, I believe:




The program iterates through the collection, searching for every occurrence of the target value.







share|improve this answer





















  • "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
    – Jacob Mattison
    Jul 3 '13 at 18:03



















1














I think you answered it yourself with "trawl".



https://en.oxforddictionaries.com/definition/trawl
"fish with a trawl net or seine, search thoroughly."



A possible problem is that some people confuse it with "troll".



You could use trudge, even if it doesn't literally mean that. https://www.dictionary.com/browse/trudge
"to walk laboriously or wearily along or over"



I often use sed to trudge through manifest files looking for old TV recordings.






share|improve this answer





























    -1














    As a coder, I would call that a "for each" operation. Ex: "For Each item in this dataset, determine if it's what I want."



    I don't know if 'for each' (or 'foreach') is a verb or not, though. "I foreached through the data" sounds awkward. And, per the answer above, using a 'for each' is a method of iteration.






    share|improve this answer





















    • No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
      – p.s.w.g
      Jul 3 '13 at 22:37



















    -1














    bitScan has been used to mean bit-wise scanning of a byte/word.



    However,




    1. It is not a recognized generic term though it is easy to understand in context.

    2. Some standard functions named bitScan1,2 already exist. That should be an issue in the OP's context.


    1ORACLE IA-32 Assembly Language
    Bit Scan Forward (bsf) scans the bits, starting at bit 0, in the doubleword operand or the second word. If the bits are all zero, ZF is cleared. Otherwise, ZF is set and the bit index of the first set bit, found while scanning in the forward direction, is loaded into the destination register.



    2http://chessprogramming.wikispaces.com/BitScan






    share|improve this answer





















      Your Answer








      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "97"
      };
      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: false,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: null,
      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
      },
      noCode: true, onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fenglish.stackexchange.com%2fquestions%2f118288%2fword-to-mean-seek-through-one-element-at-a-time%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      4














      Iterate is the word that's generally used for this, I believe:




      The program iterates through the collection, searching for every occurrence of the target value.







      share|improve this answer





















      • "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
        – Jacob Mattison
        Jul 3 '13 at 18:03
















      4














      Iterate is the word that's generally used for this, I believe:




      The program iterates through the collection, searching for every occurrence of the target value.







      share|improve this answer





















      • "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
        – Jacob Mattison
        Jul 3 '13 at 18:03














      4












      4








      4






      Iterate is the word that's generally used for this, I believe:




      The program iterates through the collection, searching for every occurrence of the target value.







      share|improve this answer












      Iterate is the word that's generally used for this, I believe:




      The program iterates through the collection, searching for every occurrence of the target value.








      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered Jul 3 '13 at 15:41









      phenryphenry

      16.5k24976




      16.5k24976












      • "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
        – Jacob Mattison
        Jul 3 '13 at 18:03


















      • "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
        – Jacob Mattison
        Jul 3 '13 at 18:03
















      "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
      – Jacob Mattison
      Jul 3 '13 at 18:03




      "iterate" is a great synonym for "step through", but doesn't necessarily match "seek" (as you can iterate for purposes other than search). Still I do think it's what the OP is looking for, yes.
      – Jacob Mattison
      Jul 3 '13 at 18:03













      1














      I think you answered it yourself with "trawl".



      https://en.oxforddictionaries.com/definition/trawl
      "fish with a trawl net or seine, search thoroughly."



      A possible problem is that some people confuse it with "troll".



      You could use trudge, even if it doesn't literally mean that. https://www.dictionary.com/browse/trudge
      "to walk laboriously or wearily along or over"



      I often use sed to trudge through manifest files looking for old TV recordings.






      share|improve this answer


























        1














        I think you answered it yourself with "trawl".



        https://en.oxforddictionaries.com/definition/trawl
        "fish with a trawl net or seine, search thoroughly."



        A possible problem is that some people confuse it with "troll".



        You could use trudge, even if it doesn't literally mean that. https://www.dictionary.com/browse/trudge
        "to walk laboriously or wearily along or over"



        I often use sed to trudge through manifest files looking for old TV recordings.






        share|improve this answer
























          1












          1








          1






          I think you answered it yourself with "trawl".



          https://en.oxforddictionaries.com/definition/trawl
          "fish with a trawl net or seine, search thoroughly."



          A possible problem is that some people confuse it with "troll".



          You could use trudge, even if it doesn't literally mean that. https://www.dictionary.com/browse/trudge
          "to walk laboriously or wearily along or over"



          I often use sed to trudge through manifest files looking for old TV recordings.






          share|improve this answer












          I think you answered it yourself with "trawl".



          https://en.oxforddictionaries.com/definition/trawl
          "fish with a trawl net or seine, search thoroughly."



          A possible problem is that some people confuse it with "troll".



          You could use trudge, even if it doesn't literally mean that. https://www.dictionary.com/browse/trudge
          "to walk laboriously or wearily along or over"



          I often use sed to trudge through manifest files looking for old TV recordings.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 5 at 23:29









          Bloke Down The PubBloke Down The Pub

          791




          791























              -1














              As a coder, I would call that a "for each" operation. Ex: "For Each item in this dataset, determine if it's what I want."



              I don't know if 'for each' (or 'foreach') is a verb or not, though. "I foreached through the data" sounds awkward. And, per the answer above, using a 'for each' is a method of iteration.






              share|improve this answer





















              • No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
                – p.s.w.g
                Jul 3 '13 at 22:37
















              -1














              As a coder, I would call that a "for each" operation. Ex: "For Each item in this dataset, determine if it's what I want."



              I don't know if 'for each' (or 'foreach') is a verb or not, though. "I foreached through the data" sounds awkward. And, per the answer above, using a 'for each' is a method of iteration.






              share|improve this answer





















              • No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
                – p.s.w.g
                Jul 3 '13 at 22:37














              -1












              -1








              -1






              As a coder, I would call that a "for each" operation. Ex: "For Each item in this dataset, determine if it's what I want."



              I don't know if 'for each' (or 'foreach') is a verb or not, though. "I foreached through the data" sounds awkward. And, per the answer above, using a 'for each' is a method of iteration.






              share|improve this answer












              As a coder, I would call that a "for each" operation. Ex: "For Each item in this dataset, determine if it's what I want."



              I don't know if 'for each' (or 'foreach') is a verb or not, though. "I foreached through the data" sounds awkward. And, per the answer above, using a 'for each' is a method of iteration.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jul 3 '13 at 21:54









              FarfromuniqueFarfromunique

              101




              101












              • No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
                – p.s.w.g
                Jul 3 '13 at 22:37


















              • No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
                – p.s.w.g
                Jul 3 '13 at 22:37
















              No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
              – p.s.w.g
              Jul 3 '13 at 22:37




              No, I've never heard for-each / for / while / do-while or any other loop construct used verb. Although you could say do X while Y, that's not derived from the programming construct; in fact it's obviously the other way around.
              – p.s.w.g
              Jul 3 '13 at 22:37











              -1














              bitScan has been used to mean bit-wise scanning of a byte/word.



              However,




              1. It is not a recognized generic term though it is easy to understand in context.

              2. Some standard functions named bitScan1,2 already exist. That should be an issue in the OP's context.


              1ORACLE IA-32 Assembly Language
              Bit Scan Forward (bsf) scans the bits, starting at bit 0, in the doubleword operand or the second word. If the bits are all zero, ZF is cleared. Otherwise, ZF is set and the bit index of the first set bit, found while scanning in the forward direction, is loaded into the destination register.



              2http://chessprogramming.wikispaces.com/BitScan






              share|improve this answer


























                -1














                bitScan has been used to mean bit-wise scanning of a byte/word.



                However,




                1. It is not a recognized generic term though it is easy to understand in context.

                2. Some standard functions named bitScan1,2 already exist. That should be an issue in the OP's context.


                1ORACLE IA-32 Assembly Language
                Bit Scan Forward (bsf) scans the bits, starting at bit 0, in the doubleword operand or the second word. If the bits are all zero, ZF is cleared. Otherwise, ZF is set and the bit index of the first set bit, found while scanning in the forward direction, is loaded into the destination register.



                2http://chessprogramming.wikispaces.com/BitScan






                share|improve this answer
























                  -1












                  -1








                  -1






                  bitScan has been used to mean bit-wise scanning of a byte/word.



                  However,




                  1. It is not a recognized generic term though it is easy to understand in context.

                  2. Some standard functions named bitScan1,2 already exist. That should be an issue in the OP's context.


                  1ORACLE IA-32 Assembly Language
                  Bit Scan Forward (bsf) scans the bits, starting at bit 0, in the doubleword operand or the second word. If the bits are all zero, ZF is cleared. Otherwise, ZF is set and the bit index of the first set bit, found while scanning in the forward direction, is loaded into the destination register.



                  2http://chessprogramming.wikispaces.com/BitScan






                  share|improve this answer












                  bitScan has been used to mean bit-wise scanning of a byte/word.



                  However,




                  1. It is not a recognized generic term though it is easy to understand in context.

                  2. Some standard functions named bitScan1,2 already exist. That should be an issue in the OP's context.


                  1ORACLE IA-32 Assembly Language
                  Bit Scan Forward (bsf) scans the bits, starting at bit 0, in the doubleword operand or the second word. If the bits are all zero, ZF is cleared. Otherwise, ZF is set and the bit index of the first set bit, found while scanning in the forward direction, is loaded into the destination register.



                  2http://chessprogramming.wikispaces.com/BitScan







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 4 '13 at 6:04









                  KrisKris

                  32.5k541117




                  32.5k541117






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to English Language & Usage Stack Exchange!


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





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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%2fenglish.stackexchange.com%2fquestions%2f118288%2fword-to-mean-seek-through-one-element-at-a-time%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

                      Paul Cézanne

                      UIScrollView CustomStickyHeader Resize height generates problems when scroll is too fast

                      Angular material date-picker (MatDatepicker) auto completes the date on focus out