This repository was archived by the owner on Dec 6, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathIQueryable.php
More file actions
175 lines (146 loc) · 3.19 KB
/
IQueryable.php
File metadata and controls
175 lines (146 loc) · 3.19 KB
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
<?php
namespace Pinq;
use Pinq\Interfaces\IJoiningOnQueryable;
use Pinq\Interfaces\IOrderedQueryable;
/**
* The queryable provides the traversable query API, on an abstracted data source from the query provider.
*
* @author Elliot Levin <elliotlevin@hotmail.com>
*/
interface IQueryable extends ITraversable
{
const IQUERYABLE_TYPE = __CLASS__;
/**
* The query provider for the implementation.
*
* @return Providers\IQueryProvider
*/
public function getProvider();
/**
* Gets the expression representing the current query scope.
*
* @return Expressions\Expression
*/
public function getExpression();
/**
* Gets the source info.
*
* @return Queries\ISourceInfo
*/
public function getSourceInfo();
/**
* {@inheritDoc}
* @return IQueryable
*/
public function getSource();
/**
* {@inheritDoc}
* @return IQueryable
*/
public function where(callable $predicate);
/**
* {@inheritDoc}
* @return IOrderedQueryable
*/
public function orderBy(callable $function, $direction);
/**
* {@inheritDoc}
* @return IOrderedQueryable
*/
public function orderByAscending(callable $function);
/**
* {@inheritDoc}
* @return IOrderedQueryable
*/
public function orderByDescending(callable $function);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function skip($amount);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function take($amount);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function slice($start, $amount);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function indexBy(callable $function);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function keys();
/**
* {@inheritDoc}
* @return IQueryable
*/
public function reindex();
/**
* {@inheritDoc}
* @return IQueryable
*/
public function groupBy(callable $function);
/**
* {@inheritDoc}
* @return IJoiningOnQueryable
*/
public function join($values);
/**
* {@inheritDoc}
* @return IJoiningOnQueryable
*/
public function groupJoin($values);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function unique();
/**
* {@inheritDoc}
* @return IQueryable
*/
public function select(callable $function);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function selectMany(callable $function);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function append($values);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function whereIn($values);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function except($values);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function union($values);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function intersect($values);
/**
* {@inheritDoc}
* @return IQueryable
*/
public function difference($values);
}