You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Firestore/Swift/Source/SwiftAPI/Firestore+Pipeline.swift
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,11 @@
22
22
import Foundation
23
23
24
24
@objcpublicextensionFirestore{
25
-
/// Creates a `PipelineSource` that can be used to build and execute a pipeline of operations on the Firestore database.
25
+
/// Creates a `PipelineSource` that can be used to build and execute a pipeline of operations on
26
+
/// the Firestore database.
26
27
///
27
-
/// A pipeline is a sequence of stages that are executed in order. Each stage can perform an operation on the data, such as filtering, sorting, or transforming it.
28
+
/// A pipeline is a sequence of stages that are executed in order. Each stage can perform an
29
+
/// operation on the data, such as filtering, sorting, or transforming it.
Copy file name to clipboardExpand all lines: Firestore/Swift/Source/SwiftAPI/Pipeline/Expressions/FunctionExpressions/FunctionExpression.swift
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,11 @@
14
14
15
15
/// Represents a function call in a pipeline.
16
16
///
17
-
/// A `FunctionExpression` is an expression that represents a function call with a given name and arguments.
17
+
/// A `FunctionExpression` is an expression that represents a function call with a given name and
18
+
/// arguments.
18
19
///
19
-
/// `FunctionExpression`s are typically used to perform operations on data in a pipeline, such as mathematical calculations, string manipulations, or array operations.
20
+
/// `FunctionExpression`s are typically used to perform operations on data in a pipeline, such as
21
+
/// mathematical calculations, string manipulations, or array operations.
Copy file name to clipboardExpand all lines: Firestore/Swift/Source/SwiftAPI/Pipeline/PipelineSource.swift
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,9 @@
12
12
// See the License for the specific language governing permissions and
13
13
// limitations under the License.
14
14
15
-
/// A `PipelineSource` is the entry point for building a Firestore pipeline. It allows you to specify the source of the data for the pipeline, which can be a collection, a collection group, a list of documents, or the entire database.
15
+
/// A `PipelineSource` is the entry point for building a Firestore pipeline. It allows you to
16
+
/// specify the source of the data for the pipeline, which can be a collection, a collection group,
0 commit comments