-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy patharray.ts
76 lines (61 loc) · 1.67 KB
/
array.ts
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
import { Subscription, StreamOps } from './index'
declare module '.' {
interface S_<A> {
'ArrayStream': Array<A>
}
}
declare module '../fantasy/typeclasses' {
interface _<A> {
'ArrayStream': Array<A>
}
}
StreamOps.prototype.empty = function() {
return []
}
StreamOps.prototype.just = function(a) {
return [a]
}
StreamOps.prototype.scan = function(f, base, fa) {
return fa.scan(f, base)
}
StreamOps.prototype.combine = function <A, C>(
f: (...a: any[]) => C,
...v: any[]
): Array<C> {
return f.apply(null, v)
}
StreamOps.prototype.filter = function <A>(f: (a: A) => boolean, fa: Array<A>): Array<A> {
return fa.filter(f)
}
StreamOps.prototype.map = function <A, B>(f: (a: A) => B, fa: Array<A>): Array<B> {
return fa.map(f)
}
StreamOps.prototype.flatMap = function <A, B>(f: (a: A) => Array<B>, fa: Array<A>): Array<B> {
return fa.reduce((acc, a) => acc.concat(f(a)), [] as B[])
}
function Subject() {
}
Subject.prototype = Array.prototype
Subject.prototype.next = function(a: any) {
this.push(a)
}
Subject.prototype.complete = function() {
}
StreamOps.prototype.subject = function <A>() {
return new (<any>Subject)()
}
StreamOps.prototype.subscribe = function <A>(fa: Array<A>, next: (v: A) => void, complete?: () => void) {
throw Error("you don't need to subscribe a Array, just iterate it")
}
StreamOps.prototype.merge = function <A, B>(a: Array<A>, b: Array<B>): Array<A | B> {
return (<any>a).concat(b)
}
StreamOps.prototype.fromPromise = function(p) {
if (p.then) {
throw Error("You're not using real Promise aren't you, expecting Id Monad")
}
return [p.valueOf()]
}
StreamOps.prototype.from = function(fa) {
return [fa.valueOf()]
}