 #### Repository https://github.com/dart-lang/sdk #### What Will I Learn? - You will learn about Lexical Scoping - You will learn about Iterators in Dart - You will learn about Collection Types - You will learn about Iterator and Collection Methods - You will learn about Functional Programming Concepts #### Requirements ##### System Requirements: - [IDEA intellij](https://www.jetbrains.com/idea/) or [Visual Studio Code](https://code.visualstudio.com/) with the Dart [Plugins](https://dartcode.org/) - The [Dart SDK](https://www.dartlang.org/) ##### OS Support for Dart: - Windows - macOS - Linux #### Required Knowledge - The Dart SDK - A Dart supported text editor ([Dart Pad can be used](https://dartpad.dartlang.org)) - A little time to sit and watch a video and some patience to learn the language #### Resources for Dart: - Dart Website: https://www.dartlang.org/ - Dart Official Documentation: https://www.dartlang.org/guides/language/language-tour - Dart GitHub repository: https://github.com/dart-lang/sdk - Awesome Dart GitHub Repository: https://github.com/yissachar/awesome-dart - Pub website: https://pub.dartlang.org #### Sources: Dart Logo (Google): https://www.dartlang.org/ #### Difficulty - Beginner #### Description In this Dart Tutorial, we take a look at some different concepts. We look at Lexical Scoping, Collections such as Lists and Maps, Iterators and Functional Methods for traversing through iterators and collections. This includes the inheritance and class structure for these different collection types and how the iterator type relates to them. We also look at the `for-in` syntactic sugar. #### Lexical Scoping and Block Scope in Dart Dart as a language has a very straight forward scoping model. It embraces the concept of Lexical Scoping or Block Scoping. When a variable is defined, it is automatically exposed to the block that it is defined in. This also includes any blocks that are inside of that original block. The variable is not directly exposed to outside blocks unless the developer specifies otherwise. Also, variables can be passed to objects and functions via parameters and through other methods in this way. Dart also features a Global Scope which allows a variable or resource to be exposed to all of the code in a file and project. <center>  </center> This image features some fairly basic code but it has a good example of lexical scoping. In the top of the main function, an X value was defined. This `x` value is exposed to anything that appears inside of the yellow box, including the two green boxes. In the first green box, we have a for loop that defines an integer variable `i`. This `i` variable is used to iterate through the list `x` and its scoped to this green box. The second green box features yet another `i` variable. This new `i` variable can be defined because the former `i` variable is no longer in the scope when it is declared. Even though both of these variables use the same name, they are different from one another and can co-exist in the code since they are in seperate scopes. #### Working with Iterators/iterables and Collections Collections are a very common type to use in any programming language. In Dart, the main collection types are the List, Set, Map and Queue. List and Set both directly inherit from a class called iterable and Map and Queue both have their own parent classes that are very similar to this iterable class. The iterable class is important because it allows the program to read over a collection of data without mutating the data. It does this by way of lazy evaluation; the iterable only reads a value if it is asked to read that value. The iterable is what enables the `for-in` loop as well as the three primary functional methods, `map`, `reduce` and `filter` or `where` in the case of Dart. <center>  </center> In the image above, the code defines an iterable value that contains 1000 items starting from 0 and ending at 999. Below it are some examples of the various methods that are attached to the iterable class. In the first line, the `reduce` method is being used to add all of the values in the iterable together into a single value; `0 + 1 + 2 + 3... + 999`. On the next line, the `take` method is chained into a `map` method. The `take` method uses the iterable's lazy nature to only evaluate the first 10 values then the `map` method takes those values and multiplies them all by 2 giving us a new list of values via `toList()`. The final three lines show off three of the conditional operators in Dart which are all variants of the `where` or `filter` method. The `any` method iterates through the collection and find out if any item matches the conditional. If a single item does, then it will return a `true` value. The `every` method is the exact opposite in that it only returns `true` if all of the values in the list meet the conditional statement. Finally, we have the `where` method which will return values that satisfy the conditional in a iterable type. In this case, we are turning that iterable into a `set` collection type through a chained `toSet()` method. The Source Code for this video may be found here: https://github.com/tensor-programming/dart_for_beginners/tree/tensor-programming-patch-5 #### Video Tutorial <iframe width="560" height="315" src="https://www.youtube.com/embed/bsvZgW5_b8w" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> #### Curriculum - [A Beginners Guide to Dart - Inheritance, Abstract Classes, Interfaces, Mixins and Casting - Part Five](https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---inheritance-abstract-classes-interfaces-mixins-and-casting---part-five) - [A Beginners Guide to Dart - Methods, Final, Static, and Class Inheritance - Part Four](https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---methods-final-static-and-class-inheritance---part-four) - [A Beginners Guide to Dart - Intro to Classes and Objects - Part Three](https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---intro-to-classes-and-objects---part-three) - [A Beginners Guide to Dart - Control Flow and Low Level Compilation - Part Two](https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---control-flow-and-low-level-compilation---part-two) - [A Beginners Guide to Dart - Types, Functions, Variables and Objects - Part One](https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---types-functions-variables-and-objects---part-one)
author | tensor | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six | ||||||||||||
category | utopian-io | ||||||||||||
json_metadata | {"tags":["utopian-io","video-tutorials","steemstem","programming","technology"],"app":"steemit/0.1","image":["https://cdn.steemitimages.com/DQmVf52JbNULs9kr7M9BTaZfgoEtAUdHc9VpVvGpuu4mg24/dart-bird.jpg","https://cdn.steemitimages.com/DQmYeLLJMdnfPWhLpZB5u9sZhYLxwX8vJiwHHMftHKqK6Xn/scope.png","https://cdn.steemitimages.com/DQmQXFkC9GUGPSaqWmVcGiEYtCdYSEbVitLDHPAAA2Ghanx/iterator.png","https://img.youtube.com/vi/bsvZgW5_b8w/0.jpg"],"links":["https://github.com/dart-lang/sdk","https://www.jetbrains.com/idea/","https://code.visualstudio.com/","https://dartcode.org/","https://www.dartlang.org/","https://dartpad.dartlang.org","https://www.dartlang.org/guides/language/language-tour","https://github.com/yissachar/awesome-dart","https://pub.dartlang.org","https://github.com/tensor-programming/dart_for_beginners/tree/tensor-programming-patch-5","https://www.youtube.com/embed/bsvZgW5_b8w","https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---inheritance-abstract-classes-interfaces-mixins-and-casting---part-five","https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---methods-final-static-and-class-inheritance---part-four","https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---intro-to-classes-and-objects---part-three","https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---control-flow-and-low-level-compilation---part-two","https://steemit.com/utopian-io/@tensor/a-beginners-guide-to-dart---types-functions-variables-and-objects---part-one"],"format":"markdown"} | ||||||||||||
created | 2019-03-09 05:46:33 | ||||||||||||
last_update | 2019-03-09 05:49:39 | ||||||||||||
depth | 0 | ||||||||||||
children | 6 | ||||||||||||
last_payout | 2019-03-16 05:46:33 | ||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||
total_payout_value | 38.174 HBD | ||||||||||||
curator_payout_value | 12.609 HBD | ||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||
promoted | 0.000 HBD | ||||||||||||
body_length | 6,904 | ||||||||||||
author_reputation | 87,856,203,149,624 | ||||||||||||
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" | ||||||||||||
beneficiaries |
| ||||||||||||
max_accepted_payout | 100,000.000 HBD | ||||||||||||
percent_hbd | 10,000 | ||||||||||||
post_id | 80,950,660 | ||||||||||||
net_rshares | 74,078,687,281,718 | ||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 4,651,541,127,240 | 19.53% | ||
rufans | 0 | 28,348,980,462 | 100% | ||
abh12345 | 0 | 32,058,092,636 | 4.88% | ||
techslut | 0 | 86,861,753,370 | 20% | ||
achiron | 0 | 38,372,962,825 | 100% | ||
sward | 0 | 6,088,560,083 | 50% | ||
mangos | 0 | 612,368,716,719 | 17% | ||
jamzed | 0 | 83,308,573,791 | 100% | ||
minersean | 0 | 7,411,469,109 | 75% | ||
ripperone | 0 | 900,806,362,077 | 18% | ||
erikaflynn | 0 | 16,131,510,852 | 35% | ||
lordneroo | 0 | 46,064,898,849 | 50% | ||
tibra | 0 | 777,667,118 | 25% | ||
miniature-tiger | 0 | 110,971,739,483 | 50% | ||
sacred-agent | 0 | 3,269,759,499 | 3% | ||
jakipatryk | 0 | 15,011,942,264 | 50% | ||
jga | 0 | 2,942,881,703 | 24.41% | ||
helo | 0 | 114,857,566,106 | 52.66% | ||
walnut1 | 0 | 49,492,565,889 | 24.41% | ||
lorenzor | 0 | 1,382,623,271 | 12.2% | ||
suesa | 0 | 120,256,607,915 | 25% | ||
drorion | 0 | 8,488,123,699 | 100% | ||
codingdefined | 0 | 28,870,182,741 | 20% | ||
tsoldovieri | 0 | 1,766,769,790 | 12.2% | ||
artistslatam | 0 | 552,460,699 | 100% | ||
bachuslib | 0 | 20,873,869,396 | 100% | ||
tykee | 0 | 13,755,697,425 | 24.41% | ||
steemitri | 0 | 74,597,771,989 | 60% | ||
alexzicky | 0 | 15,791,017,430 | 15% | ||
iamphysical | 0 | 15,011,120,405 | 90% | ||
felixrodriguez | 0 | 935,008,771 | 8.54% | ||
aafeng | 0 | 83,145,237,186 | 90% | ||
leir | 0 | 2,051,102,755 | 50% | ||
azulear | 0 | 474,711,352 | 100% | ||
silviu93 | 0 | 6,121,932,353 | 24.41% | ||
dakeshi | 0 | 3,123,528,834 | 50% | ||
accelerator | 0 | 17,662,564,231 | 1.11% | ||
eastmael | 0 | 8,111,090,491 | 50% | ||
piaristmonk | 0 | 68,742,291,628 | 100% | ||
espoem | 0 | 86,444,093,047 | 46.55% | ||
mcfarhat | 0 | 39,562,228,754 | 21.06% | ||
vishalsingh4997 | 0 | 217,023,579 | 24.41% | ||
loshcat | 0 | 2,552,500,295 | 100% | ||
steem-plus | 0 | 91,112,324,562 | 5.99% | ||
pataty69 | 0 | 15,838,970,085 | 20% | ||
elear | 0 | 7,701,899,934 | 48.83% | ||
zoneboy | 0 | 11,392,880,493 | 50% | ||
carloserp-2000 | 0 | 31,171,604,538 | 100% | ||
carlos84 | 0 | 1,638,880,711 | 24.41% | ||
che-shyr | 0 | 799,350,891 | 50% | ||
utopian-io | 0 | 63,973,581,518,182 | 48.83% | ||
shammi | 0 | 3,053,270,819 | 50% | ||
jaff8 | 0 | 115,887,617,635 | 52.66% | ||
newsrx | 0 | 108,042,599 | 8.01% | ||
amestyj | 0 | 584,912,241 | 12.2% | ||
sandracarrascal | 0 | 90,975,086 | 24.41% | ||
ajayyy | 0 | 6,240,530,542 | 100% | ||
greenorange | 0 | 547,555,770 | 100% | ||
mesafe | 0 | 3,119,036,712 | 40% | ||
mcyusuf | 0 | 3,102,337,944 | 24.41% | ||
alexs1320 | 0 | 62,818,070,147 | 51% | ||
gentleshaid | 0 | 41,008,581,670 | 48.83% | ||
rantar | 0 | 165,243,441,652 | 100% | ||
lostmine27 | 0 | 23,848,722,302 | 50% | ||
ivymalifred | 0 | 422,896,465 | 12.2% | ||
r00sj3 | 0 | 232,111,277 | 1.22% | ||
luoq | 0 | 5,101,234,063 | 100% | ||
aussieninja | 0 | 9,666,198,537 | 24.41% | ||
douglimarbalzan | 0 | 77,667,970 | 24.41% | ||
ennyta | 0 | 196,019,612 | 12.2% | ||
vjap55 | 0 | 833,800,349 | 100% | ||
dedicatedguy | 0 | 42,771,176,818 | 100% | ||
amosbastian | 0 | 161,994,885,696 | 52.66% | ||
eliaschess333 | 0 | 2,344,910,573 | 12.2% | ||
tdre | 0 | 81,133,314,420 | 100% | ||
ydavgonzalez | 0 | 43,430,638,228 | 100% | ||
asaj | 0 | 18,310,338,859 | 100% | ||
gaming.yer | 0 | 85,190,316 | 24.41% | ||
scienceangel | 0 | 72,078,337,934 | 50% | ||
jjay | 0 | 500,878,490 | 100% | ||
baycan | 0 | 1,055,393,792 | 20% | ||
steem-familia | 0 | 84,798,583 | 24.41% | ||
vanarchist | 0 | 2,635,223,002 | 100% | ||
luisal314 | 0 | 318,369,565 | 100% | ||
sargoon | 0 | 139,640,444 | 4% | ||
tobias-g | 0 | 129,413,736,665 | 40% | ||
yrmaleza | 0 | 73,451,436 | 12.2% | ||
mondodidave73 | 0 | 184,519,589 | 9% | ||
evangelista.yova | 0 | 83,777,994 | 24.41% | ||
miguelangel2801 | 0 | 156,634,902 | 12.2% | ||
josephace135 | 0 | 20,747,726,986 | 100% | ||
isisfemale | 0 | 259,792,361 | 100% | ||
didic | 0 | 33,286,943,055 | 25% | ||
jenniferjulieth | 0 | 76,389,807 | 24.41% | ||
joaorafael | 0 | 1,743,945,843 | 75% | ||
emiliomoron | 0 | 855,996,065 | 12.2% | ||
turkishcrew | 0 | 20,096,541,543 | 100% | ||
ajfernandez | 0 | 71,877,252 | 24.41% | ||
maxpatternman | 0 | 40,742,707,784 | 100% | ||
ulisesfl17 | 0 | 1,787,881,271 | 100% | ||
arac | 0 | 961,864,725 | 100% | ||
endopediatria | 0 | 131,976,701 | 4.88% | ||
ingmarvin | 0 | 77,879,236 | 24.41% | ||
samanyolu | 0 | 70,419,013 | 20% | ||
reazuliqbal | 0 | 43,959,022,849 | 25% | ||
alix96 | 0 | 76,433,774 | 24.41% | ||
isgledysduarte | 0 | 3,099,141,221 | 100% | ||
properfraction | 0 | 2,213,339,059 | 100% | ||
tomastonyperez | 0 | 2,689,898,248 | 12.2% | ||
inespereira | 0 | 297,155,829 | 75% | ||
elvigia | 0 | 2,488,526,322 | 12.2% | ||
mindark | 0 | 545,770,830 | 100% | ||
adamada | 0 | 17,273,719,629 | 50% | ||
ezravandi | 0 | 4,843,358,006 | 1.5% | ||
mandarin2016 | 0 | 20,185,800,676 | 50% | ||
luiscd8a | 0 | 1,575,034,415 | 80% | ||
eniolw | 0 | 8,016,930,223 | 100% | ||
geadriana | 0 | 110,870,242 | 3.66% | ||
elpdl | 0 | 88,936,844 | 24.41% | ||
josedelacruz | 0 | 1,139,077,864 | 12.2% | ||
joseangelvs | 0 | 470,342,854 | 24.41% | ||
sevecen | 0 | 353,070,981 | 100% | ||
viannis | 0 | 355,125,726 | 12.2% | ||
flores39 | 0 | 395,681,969 | 100% | ||
kendallron | 0 | 240,312,371 | 15% | ||
erickyoussif | 0 | 986,168,222 | 24.41% | ||
cansteem | 0 | 463,759,857 | 100% | ||
phage93 | 0 | 5,956,017,783 | 12% | ||
ryuna.siege | 0 | 208,963,027 | 100% | ||
romeskie | 0 | 2,267,298,189 | 25% | ||
serialfiller | 0 | 45,085,088,123 | 80% | ||
indayclara | 0 | 258,921,874 | 7.5% | ||
techcoderx | 0 | 5,264,681,627 | 35% | ||
andrick | 0 | 74,430,368 | 12.2% | ||
yusvelasquez | 0 | 77,995,482 | 12.2% | ||
pinas | 0 | 449,897,208 | 50% | ||
sportmen | 0 | 484,496,798 | 100% | ||
clayjohn | 0 | 4,798,198,584 | 100% | ||
elimao | 0 | 77,675,636 | 24.41% | ||
anaestrada12 | 0 | 4,385,038,050 | 24.41% | ||
trteam | 0 | 479,329,148 | 100% | ||
arbit | 0 | 517,958,672 | 100% | ||
yorgermadison | 0 | 66,999,476 | 24.41% | ||
alexjunior | 0 | 70,071,808 | 24.41% | ||
sbi5 | 0 | 18,176,506,539 | 12.88% | ||
bawativi | 0 | 250,377,946 | 50% | ||
antunez25 | 0 | 77,654,106 | 24.41% | ||
haf67 | 0 | 71,484,469 | 24.41% | ||
joelsegovia | 0 | 711,820,322 | 12.2% | ||
chavas | 0 | 80,365,092 | 24.41% | ||
drsensor | 0 | 18,817,957,320 | 100% | ||
jesusfl17 | 0 | 391,911,583 | 100% | ||
uzcateguiazambra | 0 | 78,761,128 | 24.41% | ||
bflanagin | 0 | 4,047,004,920 | 24.41% | ||
pagliozzo | 0 | 10,333,206,316 | 20% | ||
ubaldonet | 0 | 3,277,677,440 | 70% | ||
asmeira | 0 | 85,627,558 | 24.41% | ||
bestofph | 0 | 6,519,235,753 | 15% | ||
dalz | 0 | 7,634,305,609 | 19.53% | ||
ulockblock | 0 | 28,168,895,655 | 8.84% | ||
acdream | 0 | 2,674,598,363 | 100% | ||
amart29 | 0 | 466,126,469 | 6.1% | ||
jk6276 | 0 | 2,606,574,928 | 24.41% | ||
veronicacoli | 0 | 280,182,079 | 100% | ||
tiolidilil | 0 | 520,297,615 | 100% | ||
momabottpa1 | 0 | 499,549,375 | 100% | ||
trucafdadar | 0 | 522,007,759 | 100% | ||
luc.real | 0 | 94,996,776 | 60% | ||
pfernandezpetit | 0 | 67,439,504 | 24.41% | ||
mgarrillogonzale | 0 | 73,618,203 | 24.41% | ||
rubenp | 0 | 88,109,402 | 24.41% | ||
jeferc | 0 | 87,338,402 | 24.41% | ||
nieloagranca | 0 | 1,213,138,681 | 8% | ||
meganklzd | 0 | 534,415,507 | 100% | ||
haleymdo9 | 0 | 530,648,756 | 100% | ||
steemchoose | 0 | 15,944,771,352 | 7.16% | ||
dssdsds | 0 | 3,676,417,314 | 24.41% | ||
natalieqz01 | 0 | 518,801,917 | 100% | ||
jayplayco | 0 | 111,790,056,587 | 24.41% | ||
cryptouno | 0 | 487,645,352 | 5% | ||
steeming-hot | 0 | 0 | 0.02% | ||
lupafilotaxia | 0 | 14,066,806,770 | 100% | ||
fran.frey | 0 | 409,482,694 | 12.2% | ||
alaiza | 0 | 454,631,116 | 100% | ||
fabielblanchard | 0 | 190,821,750 | 100% | ||
mops2e | 0 | 532,889,050 | 37.24% | ||
jrevilla | 0 | 163,793,348 | 24.41% | ||
alfonzoasdrubal | 0 | 96,142,849 | 24.41% | ||
munhenhos | 0 | 1,406,186,517 | 20% | ||
sydneyb | 0 | 510,107,068 | 100% | ||
swapsteem | 0 | 2,630,014,850 | 24.41% | ||
randomvlogs | 0 | 313,950,687 | 100% | ||
stem-espanol | 0 | 15,160,421,992 | 24.41% | ||
zuur | 0 | 12,107,363,118 | 100% | ||
jacekw.dev | 0 | 3,577,875,593 | 100% | ||
bhaski | 0 | 1,670,685,483 | 20% | ||
lapp | 0 | 456,883,834 | 100% | ||
steemtpistia | 0 | 456,380,609 | 100% | ||
crassipes | 0 | 456,616,224 | 100% | ||
coahochsvisi | 0 | 534,043,882 | 100% | ||
grapininpe | 0 | 534,849,224 | 100% | ||
lingcullila | 0 | 522,715,213 | 100% | ||
agrovision | 0 | 456,883,624 | 100% | ||
cutnur | 0 | 0 | 5% | ||
hirally | 0 | 79,449,108 | 24.41% | ||
steem-ua | 0 | 849,782,261,789 | 8.01% | ||
giulyfarci52 | 0 | 221,256,747 | 12.2% | ||
kaczynski | 0 | 138,260,998 | 100% | ||
arequipa | 0 | 348,317,764 | 100% | ||
criptoanarquista | 0 | 1,387,451,123 | 100% | ||
alex-hm | 0 | 1,274,782,306 | 50% | ||
leviackerman | 0 | 883,630,285 | 100% | ||
wilmer14molina | 0 | 90,601,948 | 24.41% | ||
eugenialobo | 0 | 79,989,886 | 24.41% | ||
ballesteroj | 0 | 69,234,155 | 24.41% | ||
jcmontilva | 0 | 82,023,226 | 24.41% | ||
rodriguezr | 0 | 73,079,334 | 24.41% | ||
marbely20 | 0 | 79,042,094 | 24.41% | ||
moyam | 0 | 89,245,753 | 24.41% | ||
emilycg | 0 | 72,464,281 | 24.41% | ||
darys | 0 | 82,375,499 | 24.41% | ||
sibaja | 0 | 83,336,949 | 24.41% | ||
balcej | 0 | 89,226,846 | 24.41% | ||
lmanjarres | 0 | 80,362,747 | 24.41% | ||
anaka | 0 | 88,570,036 | 24.41% | ||
benhurg | 0 | 89,246,379 | 24.41% | ||
judisa | 0 | 88,722,036 | 24.41% | ||
juddarivv | 0 | 89,247,242 | 24.41% | ||
mariamo | 0 | 76,203,387 | 24.41% | ||
kimmorales | 0 | 80,979,052 | 24.41% | ||
loraine25 | 0 | 78,836,839 | 24.41% | ||
bluesniper | 0 | 26,558,599,175 | 8.42% | ||
mrsbozz | 0 | 232,284,907 | 7% | ||
ascorphat | 0 | 1,889,108,392 | 2.5% | ||
rewarding | 0 | 6,743,811,428 | 74.41% | ||
joanni | 0 | 408,199,017 | 100% | ||
jk6276.mons | 0 | 2,077,459,875 | 48.83% | ||
jaxson2011 | 0 | 1,880,865,179 | 48.83% | ||
lujuria | 0 | 348,891,803 | 100% | ||
eternalinferno | 0 | 243,948,757 | 48.83% | ||
utopian.trail | 0 | 19,532,429,836 | 48.83% | ||
bigmoneyman | 0 | 1,611,365,810 | 9% | ||
sam-dmc | 0 | 298,403,866 | 100% | ||
smvenezuela | 0 | 379,804,561 | 100% |
Hi @tensor, Great to have you doing these Dart tutorials for beginners. You outline is easy to follow and your video tutorial is easy to understand with the flow of teaching. It is a pleasure to watch these videos. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/9/1-1-1-1-1-1-1-1-3-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm).
author | rosatravels |
---|---|
permlink | re-tensor-a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six-20190311t070951726z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["tensor"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/9/1-1-1-1-1-1-1-1-3-","https://discord.gg/uTyJkNm"],"app":"steemit/0.1"} |
created | 2019-03-11 07:09:51 |
last_update | 2019-03-11 07:09:51 |
depth | 1 |
children | 2 |
last_payout | 2019-03-18 07:09:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 8.977 HBD |
curator_payout_value | 2.842 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 622 |
author_reputation | 422,827,447,688,168 |
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,053,816 |
net_rshares | 16,831,919,547,509 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lordneroo | 0 | 4,515,443,148 | 5% | ||
tensor | 0 | 45,327,331,133 | 100% | ||
codingdefined | 0 | 28,293,687,112 | 20% | ||
themarkymark | 0 | 70,882,196,776 | 3% | ||
espoem | 0 | 28,270,777,257 | 15% | ||
utopian-io | 0 | 16,496,891,014,845 | 11.48% | ||
jaff8 | 0 | 38,680,553,401 | 16.82% | ||
amosbastian | 0 | 54,755,463,175 | 16.83% | ||
reazuliqbal | 0 | 19,022,809,777 | 10% | ||
statsexpert | 0 | 8,178,165,411 | 100% | ||
ulockblock | 0 | 15,349,449,341 | 4.55% | ||
ascorphat | 0 | 1,400,897,060 | 2.5% | ||
yff | 0 | 20,019,934,723 | 100% | ||
curatortrail | 0 | 331,824,350 | 95% |
Thank you @rosatravels. Always great to read your comments on my contributions.
author | tensor |
---|---|
permlink | re-rosatravels-re-tensor-a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six-20190311t201819125z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["rosatravels"],"app":"steemit/0.1"} |
created | 2019-03-11 20:18:15 |
last_update | 2019-03-11 20:18:15 |
depth | 2 |
children | 0 |
last_payout | 2019-03-18 20:18:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 87,856,203,149,624 |
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,090,040 |
net_rshares | 0 |
Thank you for your review, @rosatravels! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-tensor-a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six-20190311t070951726z-20190314t050026z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-14 05:00:27 |
last_update | 2019-03-14 05:00:27 |
depth | 2 |
children | 0 |
last_payout | 2019-03-21 05:00:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 63 |
author_reputation | 152,955,367,999,756 |
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,279,718 |
net_rshares | 0 |
Hi, @tensor! You just got a **5.99%** upvote from SteemPlus! To get higher upvotes, earn more SteemPlus Points (SPP). On your Steemit wallet, check your SPP balance and click on "How to earn SPP?" to find out all the ways to earn. If you're not using SteemPlus yet, please check our last posts in [here](https://steemit.com/@steem-plus) to see the many ways in which SteemPlus can improve your Steem experience on Steemit and Busy.
author | steem-plus |
---|---|
permlink | a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six---vote-steemplus |
category | utopian-io |
json_metadata | {} |
created | 2019-03-09 09:47:36 |
last_update | 2019-03-09 09:47:36 |
depth | 1 |
children | 0 |
last_payout | 2019-03-16 09:47:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 433 |
author_reputation | 247,952,188,232,400 |
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,957,913 |
net_rshares | 0 |
#### Hi @tensor! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six-20190311t071116z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-11 07:11:18 |
last_update | 2019-03-11 07:11:18 |
depth | 1 |
children | 0 |
last_payout | 2019-03-18 07:11:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.009 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 285 |
author_reputation | 23,214,230,978,060 |
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,053,858 |
net_rshares | 53,771,571,441 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sbi5 | 0 | 53,771,571,441 | 32.76% |
Hey, @tensor! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-a-beginners-guide-to-dart---scope-iterators-functional-programming-and-collections---part-six-20190312t035937z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-12 03:59:39 |
last_update | 2019-03-12 03:59:39 |
depth | 1 |
children | 0 |
last_payout | 2019-03-19 03:59:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 588 |
author_reputation | 152,955,367,999,756 |
root_title | "A Beginners Guide to Dart - Scope, Iterators, Functional Programming and Collections - Part Six" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,111,704 |
net_rshares | 0 |