Word to mean 'seek through, one element at a time'
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
add a comment |
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
Perhaps, this could have been asked on SO/ programmersSE.
– Kris
Jul 4 '13 at 6:05
add a comment |
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
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
single-word-requests phrase-requests programming
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
add a comment |
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
add a comment |
4 Answers
4
active
oldest
votes
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.
"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
add a comment |
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.
add a comment |
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.
No, I've never heardfor-each/for/while/do-whileor 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
add a comment |
bitScan has been used to mean bit-wise scanning of a byte/word.
However,
- It is not a recognized generic term though it is easy to understand in context.
- 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
add a comment |
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
});
}
});
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%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
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.
"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
add a comment |
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.
"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
add a comment |
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.
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.
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
add a comment |
"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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered Jan 5 at 23:29
Bloke Down The PubBloke Down The Pub
791
791
add a comment |
add a comment |
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.
No, I've never heardfor-each/for/while/do-whileor 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
add a comment |
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.
No, I've never heardfor-each/for/while/do-whileor 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
add a comment |
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.
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.
answered Jul 3 '13 at 21:54
FarfromuniqueFarfromunique
101
101
No, I've never heardfor-each/for/while/do-whileor 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
add a comment |
No, I've never heardfor-each/for/while/do-whileor 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
add a comment |
bitScan has been used to mean bit-wise scanning of a byte/word.
However,
- It is not a recognized generic term though it is easy to understand in context.
- 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
add a comment |
bitScan has been used to mean bit-wise scanning of a byte/word.
However,
- It is not a recognized generic term though it is easy to understand in context.
- 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
add a comment |
bitScan has been used to mean bit-wise scanning of a byte/word.
However,
- It is not a recognized generic term though it is easy to understand in context.
- 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
bitScan has been used to mean bit-wise scanning of a byte/word.
However,
- It is not a recognized generic term though it is easy to understand in context.
- 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
answered Jul 4 '13 at 6:04
KrisKris
32.5k541117
32.5k541117
add a comment |
add a comment |
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.
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%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
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
Perhaps, this could have been asked on SO/ programmersSE.
– Kris
Jul 4 '13 at 6:05