line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Copyright 2014 - present MongoDB, Inc. |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
4
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
5
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
10
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
11
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
13
|
|
|
|
|
|
|
# limitations under the License. |
14
|
|
|
|
|
|
|
|
15
|
59
|
|
|
59
|
|
414
|
use strict; |
|
59
|
|
|
|
|
137
|
|
|
59
|
|
|
|
|
1658
|
|
16
|
59
|
|
|
59
|
|
301
|
use warnings; |
|
59
|
|
|
|
|
148
|
|
|
59
|
|
|
|
|
1879
|
|
17
|
|
|
|
|
|
|
package MongoDB::DeleteResult; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# ABSTRACT: MongoDB deletion result object |
20
|
|
|
|
|
|
|
|
21
|
59
|
|
|
59
|
|
309
|
use version; |
|
59
|
|
|
|
|
128
|
|
|
59
|
|
|
|
|
329
|
|
22
|
|
|
|
|
|
|
our $VERSION = 'v2.2.1'; |
23
|
|
|
|
|
|
|
|
24
|
59
|
|
|
59
|
|
4351
|
use Moo; |
|
59
|
|
|
|
|
152
|
|
|
59
|
|
|
|
|
329
|
|
25
|
59
|
|
|
59
|
|
19055
|
use MongoDB::_Constants; |
|
59
|
|
|
|
|
200
|
|
|
59
|
|
|
|
|
6960
|
|
26
|
59
|
|
|
|
|
534
|
use MongoDB::_Types qw( |
27
|
|
|
|
|
|
|
Numish |
28
|
59
|
|
|
59
|
|
442
|
); |
|
59
|
|
|
|
|
146
|
|
29
|
59
|
|
|
59
|
|
63266
|
use namespace::clean; |
|
59
|
|
|
|
|
163
|
|
|
59
|
|
|
|
|
394
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
with $_ for qw( |
32
|
|
|
|
|
|
|
MongoDB::Role::_PrivateConstructor |
33
|
|
|
|
|
|
|
MongoDB::Role::_WriteResult |
34
|
|
|
|
|
|
|
); |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
#pod =attr deleted_count |
37
|
|
|
|
|
|
|
#pod |
38
|
|
|
|
|
|
|
#pod The number of documents that matched the filter. |
39
|
|
|
|
|
|
|
#pod |
40
|
|
|
|
|
|
|
#pod =cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
has deleted_count => ( |
43
|
|
|
|
|
|
|
is => 'ro', |
44
|
|
|
|
|
|
|
default => 0, |
45
|
|
|
|
|
|
|
isa => Numish, |
46
|
|
|
|
|
|
|
); |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
__END__ |