-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path06-higher-order-functions.html
622 lines (348 loc) · 28.5 KB
/
06-higher-order-functions.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
<!DOCTYPE HTML>
<html lang="" >
<head>
<meta charset="UTF-8">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>Funções de Primeira Classe · GitBook</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="">
<meta name="generator" content="GitBook 3.2.2">
<link rel="stylesheet" href="../gitbook/style.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="../gitbook/gitbook-plugin-fontsettings/website.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="../gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="../07-recursion/07-recursion.html" />
<link rel="prev" href="../05-declarative/05-declarative.html" />
</head>
<body>
<div class="book">
<div class="book-summary">
<div id="book-search-input" role="search">
<input type="text" placeholder="Type to search" />
</div>
<nav role="navigation">
<ul class="summary">
<li class="header">Functional Programming in Javascript</li>
<li class="chapter " data-level="1.1" data-path="../">
<a href="../">
Sumário
</a>
</li>
<li class="chapter " data-level="1.2" data-path="../00-introduction/00-introduction.html">
<a href="../00-introduction/00-introduction.html">
Introdução
</a>
</li>
<li class="chapter " data-level="1.3" data-path="../01-λ-calculus/01-λ-calculus.html">
<a href="../01-λ-calculus/01-λ-calculus.html">
Lambda Calculus
</a>
</li>
<li class="chapter " data-level="1.4" data-path="../02-pure-functions/02-pure-functions.html">
<a href="../02-pure-functions/02-pure-functions.html">
Funções puras
</a>
</li>
<li class="chapter " data-level="1.5" data-path="../03-currying-vs-partial-application/03-currying-vs-partial-application.html">
<a href="../03-currying-vs-partial-application/03-currying-vs-partial-application.html">
Currying & Parcial Application
</a>
</li>
<li class="chapter " data-level="1.6" data-path="../04-immutability/04-immutability.html">
<a href="../04-immutability/04-immutability.html">
Imutabilidade
</a>
</li>
<li class="chapter " data-level="1.7" data-path="../05-declarative/05-declarative.html">
<a href="../05-declarative/05-declarative.html">
Programação Declarativa
</a>
</li>
<li class="chapter active" data-level="1.8" data-path="06-higher-order-functions.html">
<a href="06-higher-order-functions.html">
Funções de Primeira Classe
</a>
</li>
<li class="chapter " data-level="1.9" data-path="../07-recursion/07-recursion.html">
<a href="../07-recursion/07-recursion.html">
Recursão
</a>
</li>
<li class="chapter " data-level="1.10" data-path="../08-composition-and-pipelines/08-composition-and-pipelines.html">
<a href="../08-composition-and-pipelines/08-composition-and-pipelines.html">
Composição de pipeline
</a>
</li>
<li class="chapter " data-level="1.11" data-path="../09-modules-and-async/09-modules-and-async.html">
<a href="../09-modules-and-async/09-modules-and-async.html">
Modulos, Async, contratos, error handling
</a>
</li>
<li class="chapter " data-level="1.12" data-path="../10-classes/10-classes.html">
<a href="../10-classes/10-classes.html">
Não usando classes
</a>
</li>
<li class="chapter " data-level="1.13" data-path="../11-tacit/11-tacit.html">
<a href="../11-tacit/11-tacit.html">
Programação tacita
</a>
</li>
<li class="chapter " data-level="1.14" data-path="../12-combinators/12-combinators.html">
<a href="../12-combinators/12-combinators.html">
Combinators
</a>
</li>
<li class="chapter " data-level="1.15" data-path="../13-category-theory/13-category-theory.html">
<a href="../13-category-theory/13-category-theory.html">
Teoria das categorias
</a>
</li>
<li class="chapter " data-level="1.16" data-path="../14-architecture/14-architecture.html">
<a href="../14-architecture/14-architecture.html">
Arquitetura Funcional
</a>
</li>
<li class="chapter " data-level="1.17" data-path="../15-langs/15-langs.html">
<a href="../15-langs/15-langs.html">
Linguagens que copilam para JS
</a>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
Published with GitBook
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href=".." >Funções de Primeira Classe</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<div id="book-search-results">
<div class="search-noresults">
<section class="normal markdown-section">
<h1 id="higher-order-functions">Higher Order Functions</h1>
<p><img src="http://i.imgur.com/jRvXtcO.jpg" alt="Higher Order Functions"></p>
<p>Na Computação <em>Funções de Alta Ordem</em> também conhecidas como <em>Funções de Primeira Classe</em>
são funções que suportam a passagem de outras funções como argumentos retornando como valor para outras funções.
Em outras palavras, são funções que operam em outras funções, seja levando-os como argumentos ou devolvendo-os.
The idea of functions as first-class entities is that functions are also treated as values and used as data.</p>
<p>Functions as first-class entities can:</p>
<p>Refer to it from constants and variables
Pass it as a parameter to other functions
Return it as result from other functions</p>
<p>The idea to treat functions as values and pass functions like data. This way we can combine functions with other functions to create new functions with new behavior.</p>
<p>These functions have similar logic, but the difference is the operators functions. If we can treat functions as values and pass it as arguments, we can build a function that receives the operator function and use it inside our function. Let's build it!
Exemplos de função sendo passada como argumento ou como retorno</p>
<p>O que torna javascript uma linguagem de programação que suporta programação funcional é a habilidade de ter HOF. </p>
<p>De certa forma podemos dizer que uma Self-invoking function é uma higher-order function. Higher-order functions são funções que recebem ou retornam outras.</p>
<p>Não é comum vermos Higher-order functions em linguagens tradicionais. O programador imperativo certemante usará um loop para iterar um array, porém, o funcional adotará uma abordagem completamente diferente. Podemos trabalhar o array com uma higher-order function, aplicando-a em cada item prar criar um novo array.</p>
<p>Essa é a ideia central do paradigma funcional. Uma Higher-order function permite-nos passar sua lógica a outras funções, bem como objetos.</p>
<p>Funções em JavaScript são tratadas como "Cidadãs de primeira classe", tal comportamento pode ser encontrado no Haskell, Scheme ou em linguagens funcionais clássicas. Esse termo pode soar bizarro - Cidadãs de primeira classe -, mas isso simplesmente quer dizer que funções são tratadas da mesma maneira que tipos primitivos: números e objetos. Se números e objetos tem "passe livre", funções também têm.</p>
<p>É possivel atribuir essas funções a variaveis <code>var</code> ou <code>let</code>ou ainda a constantes <code>const</code></p>
<pre><code class="lang-javascript"><span class="hljs-keyword">var</span> soma = (x, y) => x + y;
<span class="hljs-keyword">let</span> subtracao = (x, y) => x - y;
<span class="hljs-keyword">const</span> calcular = (fn, x, y) => fn(x, y);
calcular(soma, <span class="hljs-number">1</span>, <span class="hljs-number">2</span>); <span class="hljs-comment">// 3</span>
calcular(subtracao, <span class="hljs-number">1</span>, <span class="hljs-number">2</span>); <span class="hljs-comment">// -1</span>
</code></pre>
<p>Para vermos isto em ação, usaremos uma higher-order com nossa função ValueAccumulator() da seção anterior:</p>
<pre><code class="lang-javascript"><span class="hljs-comment">// using forEach() to iterate through an array and call a</span>
<span class="hljs-comment">// callback function, accumulator, for each item</span>
<span class="hljs-keyword">var</span> accumulator2 = ValueAccumulator();
<span class="hljs-keyword">var</span> objects = [ obj1, obj2, obj3 ]; <span class="hljs-comment">// could be huge array of objects</span>
objects.forEach( accumulator2 );
<span class="hljs-built_in">console</span>.log( accumulator2() );
</code></pre>
<p><a href="https://gist.github.com/lukkaslt/1c2514d4e241498bf81d24ac2da97986" target="_blank">Fonte</a></p>
<p><a href="https://github.com/LeandroTk/learning-functional-programming/tree/master/javascript" target="_blank">https://github.com/LeandroTk/learning-functional-programming/tree/master/javascript</a></p>
<h3 id="functional-methods-with-arrays">Functional Methods with arrays</h3>
<h3 id="arrayprototypemap">Array.prototype.map()</h3>
<p>A função <code>map()</code> é a capitã do time. Ela simplesmente aplica o callback em cada elemento do array.</p>
<blockquote>
<p>Sintaxe: <code>arr.map( callback [, thisArg] );</code></p>
</blockquote>
<p>Parâmetros:</p>
<ul>
<li><code>callback()</code>: esta função produz um elemento para o novo array, recebendo os argumentos:<ul>
<li><code>currentValue</code>: fornece-nos o elemento em processamento.</li>
<li><code>index</code>: fornece-nos a posição do elemento em processamento.</li>
<li><code>array</code>: fornece-nos o array em processamento.</li>
</ul>
</li>
<li><code>thisArg()</code>: Esta função é opcional. O valor é usado com <code>this</code> ao executar o callback.</li>
</ul>
<p>Exemplos:</p>
<pre><code class="lang-js"><span class="hljs-keyword">let</span>
integers = [ <span class="hljs-number">1</span>, <span class="hljs-number">-0</span>, <span class="hljs-number">9</span>, <span class="hljs-number">-8</span>, <span class="hljs-number">3</span> ],
numbers = [ <span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>, <span class="hljs-number">4</span> ],
str = <span class="hljs-string">"Santo Tomás de Aquino"</span>;
<span class="hljs-comment">// map integers to their absolute values</span>
<span class="hljs-built_in">console</span>.log( integers.map( <span class="hljs-built_in">Math</span>.abs ) );
<span class="hljs-comment">// multiply an array of numbers by their position in the array</span>
<span class="hljs-built_in">console</span>.log( numbers.map( ( x, i ) => x * i ) );
<span class="hljs-comment">// Capitalize every other word in a string</span>
str
.split(<span class="hljs-string">' '</span>)
.map( ( s, i ) => !( i % <span class="hljs-number">2</span> ) && s.toUpperCase() || s );
</code></pre>
<p>Embora o método <code>Array.prototype.map</code> pertença à o objeto <code>Array</code>, este pode ser facilmente extendido e personalizado a gosto nosso.</p>
<pre><code class="lang-js">MyObject.prototype.map = <span class="hljs-function"><span class="hljs-keyword">function</span>(<span class="hljs-params"> f </span>) </span>{
<span class="hljs-keyword">return</span> <span class="hljs-keyword">new</span> MyObject( f( <span class="hljs-keyword">this</span>.value ) );
}
</code></pre>
<h3 id="arrayprototypefilter">Array.prototype.filter()</h3>
<p>A função <code>filter()</code> é usada para selecionar elementos de um array. O callback deve retornar <code>True</code> (para incluir o elemento no novo array) ou <code>False</code> (para ignorá-lo). Podemos obter um comportamento semelhante mediante o uso da função <code>map()</code> retornando o valor <code>null</code> para os elementos que desejarmos eliminar, mas a função <code>filter()</code> eliminará o elemento do novo array em vez de inserir <code>null</code> em seu lugar.</p>
<blockquote>
<p>Sintaxe: <code>arr.filter(callback [, thisArg]);</code></p>
</blockquote>
<p>Parâmetros:</p>
<ul>
<li><code>callback()</code>: Esta função é usada para testar cada elemento do array. Retorna <code>True</code> para manter o elemento, <code>False</code> caso contrário. Segue-se seus parâmetros:<ul>
<li><code>currentValue</code>: fornece-nos o elemento em processamento.</li>
<li><code>index</code>: fornece-nos a posição do elemento em processamento.</li>
<li><code>array</code>: fornece-nos o array em processamento.</li>
</ul>
</li>
<li><code>thisArg()</code>: Esta função é opcional. O valor é usado com <code>this</code> ao executar o callback. </li>
</ul>
<p>Exemplos:</p>
<pre><code class="lang-js"><span class="hljs-keyword">let</span>
myArray = [ <span class="hljs-number">1</span>, <span class="hljs-number">3</span>, <span class="hljs-number">6</span>, <span class="hljs-number">10</span>, <span class="hljs-number">15</span> ],
words = <span class="hljs-string">"4 é o segundo número quadrado. 2² = 2 x 2 = 2 + 2."</span>.split(<span class="hljs-string">' '</span>),
re = <span class="hljs-regexp">/[^x][a-zA-Z]|[éóáúí]/</span>;
<span class="hljs-comment">// remove all negative numbers</span>
<span class="hljs-built_in">console</span>.log( [ <span class="hljs-number">-1</span>, <span class="hljs-number">4</span>, <span class="hljs-number">-10</span>, <span class="hljs-number">19</span> ].filter( x => x > <span class="hljs-number">0</span> ) );
<span class="hljs-comment">// remove null values after a map operation</span>
<span class="hljs-built_in">console</span>.log( words.filter( s => s.match( re ) ) );
<span class="hljs-comment">// remove radom objects from a array</span>
<span class="hljs-built_in">console</span>.log( myArray.filter( () => <span class="hljs-number">0</span> | <span class="hljs-built_in">Math</span>.random() * <span class="hljs-number">20</span> ) );
</code></pre>
<h3 id="arrayprototypereduce">Array.prototype.reduce()</h3>
<p>Às vezes chamada de <code>fold</code>, a função <code>reduce()</code> é usada para reduzir os elementos do array em um. O callback retorna a lógica responsável por combinar os objetos. Geralmente a usamos com números para obter o produdório ou o somatório destes. E se tratando de um conjunto strings, a usamos para concatená-las formando uma só única.</p>
<blockquote>
<p>Sintaxe: <code>arr.reduce(callback [, initialValue]);</code></p>
</blockquote>
<ul>
<li><code>callback()</code>: esta função retorna a combinação de dois elementos num só. Segue-se seus parâmetros:<ul>
<li><code>previousValue</code>: fornece-nos o valor previamente retornado pela última execução do callback, ou o <code>initialValue</code>, se fornecido</li>
<li><code>currentValue</code>: fornece-nos o elemento em processamento.</li>
<li><code>index</code>: fornece-nos a posição do elemento em processamento.</li>
<li><code>array</code>: fornece-nos o array em processamento.</li>
</ul>
</li>
<li><code>previousValue()</code>: Está função é opcional. É o objeto a ser usado pela primeira execução do <code>callback</code>.</li>
</ul>
<p>Exemplos:</p>
<pre><code class="lang-js"><span class="hljs-keyword">let</span> numbers = [ <span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>, <span class="hljs-number">4</span> ];
<span class="hljs-comment">// sum up all the values of an array</span>
<span class="hljs-built_in">console</span>.log( numbers.reduce( ( x, y ) => x + y, <span class="hljs-number">0</span> ) );
<span class="hljs-comment">// prod up all the values of an array</span>
<span class="hljs-built_in">console</span>.log( numbers.reduce( ( x, y ) => x * y, <span class="hljs-number">1</span> ) );
<span class="hljs-comment">// find the largest number</span>
<span class="hljs-built_in">console</span>.log( numbers.reduce( ( a, b ) => <span class="hljs-built_in">Math</span>.max( a, b ) ) );
</code></pre>
<h3 id="honorable-mentions">Honorable mentions</h3>
<p>A caixa de ferramentas a auxiliar-nos não é composta apenas pelas funções <code>map()</code>, <code>filter()</code> e <code>reduce()</code>. Existem tantas mais, as quais podemos usar em nossos aplicativos funcionais.</p>
<h4 id="arrayprototypeforeach">Array.prototype.forEach</h4>
<p>Essencialmente a versão não pura do <code>map()</code>, <code>forEach()</code> também itera e aplica um <code>callback()</code> sobre cada elemento do array, porém, nada retorna. É simplesmente uma alternativa "clean" ao laço <code>for</code>.</p>
<blockquote>
<p>Sintaxe <code>arr.forEach(callback [, thisArg]);</code></p>
</blockquote>
<p>Parâmetros: </p>
<ul>
<li><code>callback()</code>: Está função será executada sobre cada elemento do array. Segue-se seus parâmetros:<ul>
<li><code>currentValue</code>: fornece-nos o elemento em processamento.</li>
<li><code>index</code>: fornece-nos a posição do elemento em processamento.</li>
<li><code>array</code>: fornece-nos o array em processamento.</li>
</ul>
</li>
<li><code>thisArg()</code>: Esta função é opcional. O valor é usado com <code>this</code> ao executar o callback. </li>
</ul>
<p>Exemplos:</p>
<pre><code class="lang-js"><span class="hljs-keyword">let</span> arr = [ <span class="hljs-number">1</span>, <span class="hljs-number">4</span>, <span class="hljs-number">10</span>, <span class="hljs-number">20</span> ];
<span class="hljs-keyword">let</span> nodes = arr.map( <span class="hljs-function"><span class="hljs-keyword">function</span>(<span class="hljs-params"> x </span>) </span>{
<span class="hljs-keyword">let</span> elem = <span class="hljs-built_in">document</span>.createElement( <span class="hljs-string">"div"</span> );
elem.textContent = x;
<span class="hljs-keyword">return</span> elem;
});
<span class="hljs-comment">// log the value of each item</span>
arr.forEach( <span class="hljs-function"><span class="hljs-keyword">function</span>(<span class="hljs-params"> x </span>) </span>{ <span class="hljs-built_in">console</span>.log( x ) } );
<span class="hljs-comment">// append notes to the DOM</span>
nodes.forEach( <span class="hljs-function"><span class="hljs-keyword">function</span>(<span class="hljs-params"> x </span>) </span>{ <span class="hljs-built_in">document</span>.body.appendChild( x ) } );
</code></pre>
<h4 id="arrayprototypeconcat">Array.prototype.concat</h4>
<p>Ao trabalharmos com diversos arrays e, este trabalho não envolver loops <code>for</code> e <code>while</code>, certamente precisaremos uní-los. Eis a função "built-in" <code>concat()</code>. E o legal é que ela retorna os arryas mantendo-os intactos, ou seja, é pura. E tem mais, ela é capaz de unir uma quantidade indefinida de arrays.</p>
<pre><code class="lang-js"><span class="hljs-comment">// concatenate two arrays</span>
<span class="hljs-built_in">console</span>.log( [ <span class="hljs-number">2</span>, <span class="hljs-number">4</span>, <span class="hljs-number">6</span> ].concat( [ <span class="hljs-string">'a'</span>, <span class="hljs-string">'b'</span>, <span class="hljs-string">'c'</span> ] ) ); <span class="hljs-comment">// out: [ 2, 4, 6, 'a', 'b', 'c' ]</span>
</code></pre>
<p>Podemos perceber que ela uniu-os mantendo o original intacto. Isso quer dizer que podemos fazer o encadeamento sem maiores problemas.</p>
<pre><code class="lang-js"><span class="hljs-keyword">let</span>
arr1 = [ <span class="hljs-number">2</span>, <span class="hljs-number">6</span>, <span class="hljs-number">12</span>, <span class="hljs-number">20</span> ],
arr2 = [ <span class="hljs-number">1</span>, <span class="hljs-number">4</span>, <span class="hljs-number">9</span>, <span class="hljs-number">16</span> ],
arr3 = [ <span class="hljs-number">1</span>, <span class="hljs-number">5</span>, <span class="hljs-number">13</span>, <span class="hljs-number">25</span> ];
<span class="hljs-keyword">let</span> x = arr1.concat( arr2, arr3 );
<span class="hljs-keyword">let</span> y = arr1.concat( arr2 ).concat( arr3 );
<span class="hljs-keyword">let</span> z = arr1.concat( arr1.concat( arr3 ) );
<span class="hljs-built_in">console</span>.log( x, y, z )
</code></pre>
<p>As variáveis <code>x</code>, <code>y</code> e <code>z</code> todas contêm <code>[ 2, 6, 12, 20, 1, 4, 9, 16, 1, 5, 13, 25 ]</code>.</p>
<h4 id="arrayprototypereverse">Array.prototype.reverse</h4>
<h4 id="arrayprototypesort">Array.prototype.sort</h4>
<h4 id="arrayprototypeevery-and-arrayprototypesome">Array.prototype.every and Array.prototype.some</h4>
<p><a href="https://gist.github.com/lukkaslt/1c2514d4e241498bf81d24ac2da97986" target="_blank">Fonte</a></p>
</section>
</div>
<div class="search-results">
<div class="has-results">
<h1 class="search-results-title"><span class='search-results-count'></span> results matching "<span class='search-query'></span>"</h1>
<ul class="search-results-list"></ul>
</div>
<div class="no-results">
<h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<a href="../05-declarative/05-declarative.html" class="navigation navigation-prev " aria-label="Previous page: Programação Declarativa">
<i class="fa fa-angle-left"></i>
</a>
<a href="../07-recursion/07-recursion.html" class="navigation navigation-next " aria-label="Next page: Recursão">
<i class="fa fa-angle-right"></i>
</a>
</div>
<script>
var gitbook = gitbook || [];
gitbook.push(function() {
gitbook.page.hasChanged({"page":{"title":"Funções de Primeira Classe","level":"1.8","depth":1,"next":{"title":"Recursão","level":"1.9","depth":1,"path":"07-recursion/07-recursion.md","ref":"07-recursion/07-recursion.md","articles":[]},"previous":{"title":"Programação Declarativa","level":"1.7","depth":1,"path":"05-declarative/05-declarative.md","ref":"05-declarative/05-declarative.md","articles":[]},"dir":"ltr"},"config":{"gitbook":"*","theme":"default","variables":{},"plugins":[],"pluginsConfig":{"highlight":{},"search":{},"lunr":{"maxIndexSize":1000000,"ignoreSpecialCharacters":false},"sharing":{"facebook":true,"twitter":true,"google":false,"weibo":false,"instapaper":false,"vk":false,"all":["facebook","google","twitter","weibo","instapaper"]},"fontsettings":{"theme":"white","family":"sans","size":2},"theme-default":{"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"},"showLevel":false}},"structure":{"langs":"LANGS.md","readme":"README.md","glossary":"GLOSSARY.md","summary":"SUMMARY.md"},"pdf":{"pageNumbers":true,"fontSize":12,"fontFamily":"Arial","paperSize":"a4","chapterMark":"pagebreak","pageBreaksBefore":"/","margin":{"right":62,"left":62,"top":56,"bottom":56}},"styles":{"website":"styles/website.css","pdf":"styles/pdf.css","epub":"styles/epub.css","mobi":"styles/mobi.css","ebook":"styles/ebook.css","print":"styles/print.css"}},"file":{"path":"06-higher-order-functions/06-higher-order-functions.md","mtime":"2019-02-03T18:24:51.316Z","type":"markdown"},"gitbook":{"version":"3.2.2","time":"2019-03-12T15:25:11.574Z"},"basePath":"..","book":{"language":""}});
});
</script>
</div>
<script src="../gitbook/gitbook.js"></script>
<script src="../gitbook/theme.js"></script>
<script src="../gitbook/gitbook-plugin-search/search-engine.js"></script>
<script src="../gitbook/gitbook-plugin-search/search.js"></script>
<script src="../gitbook/gitbook-plugin-lunr/lunr.min.js"></script>
<script src="../gitbook/gitbook-plugin-lunr/search-lunr.js"></script>
<script src="../gitbook/gitbook-plugin-sharing/buttons.js"></script>
<script src="../gitbook/gitbook-plugin-fontsettings/fontsettings.js"></script>
</body>
</html>