-
-
13 Aug 2020 15:12:18 UTC
- Distribution: MongoDB
- Module version: v2.2.2
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues
- Testers
- Kwalitee
Bus factor: 1- 44.88% Coverage
- License: apache_2_0
- Perl: v5.10.1
- Activity
24 month- Tools
- Download (567.81KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 74 contributors-
David Golden
-
Rassi
-
Mike Friedman
-
Kristina Chodorow
-
Florian Ragwitz
-
Andrew Page
-
Andrey Khozov
-
Ashley Willis
-
Ask Bjørn Hansen
-
Bernard Gorman
-
Brendan W. McAdams
-
Brian Moss
-
Casey Rojas
-
Christian Hansen
-
Christian Sturm
-
Christian Walde
-
Colin Cyr
-
Danny Raetzsch
-
David Morrison
-
David Nadle
-
David Steinbrunner
-
David Storch
-
diegok
-
D. Ilmari Mannsåker
-
Eric Daniels
-
Finn Kempers (Shadowcat Systems Ltd)
-
Gerard Goossen
-
Glenn Fowler
-
Graham Barr
-
Hao Wu
-
Harish Upadhyayula
-
Jason Carey
-
Jason Toffaletti
-
Johann Rolschewski
-
John A. Kunze
-
Joseph Harnish
-
Josh Matthews
-
Joshua Juran
-
J. Stewart
-
Kamil Slowikowski
-
Ken Williams
-
Matthew Shopsin
-
Matt S Trout
-
Michael Langner
-
Michael Rotmanov
-
Mike Dirolf
-
Mohammad S Anwar
-
Nickola Trupcheff
-
Nigel Gregoire
-
Niko Tyni
-
Nuno Carvalho
-
Orlando Vazquez
-
Othello Maurer
-
Pan Fan
-
Pavel Denisov
-
Rahul Dhodapkar
-
Robert Sedlacek (Shadowcat Systems Ltd)
-
Robin Lee
-
Roman Yerin
-
Ronald J Kimball
-
Ryan Chipman
-
Slaven Rezic
-
Stephen Oberholtzer
-
Steve Sanbeg
-
Stuart Watt
-
Thomas Bloor (Shadowcat Systems Ltd)
-
Tobias Leich
-
Uwe Voelker
-
Wallace Reis
-
Wan Bachtiar
-
Whitney Jackson
-
Xavier Guimard
-
Xtreak
-
Zhihong Zhang
- Dependencies
- Authen::SASL::SASLprep
- Authen::SCRAM::Client
- BSON
- BSON::Bytes
- BSON::Code
- BSON::DBRef
- BSON::OID
- BSON::Raw
- BSON::Regex
- BSON::Time
- BSON::Timestamp
- BSON::Types
- Carp
- Compress::Zlib
- Digest::MD5
- Encode
- Exporter
- IO::Socket
- List::Util
- MIME::Base64
- Math::BigInt
- Moo
- Moo::Role
- Net::DNS
- Safe::Isa
- Scalar::Util
- Socket
- Sub::Defer
- Sub::Quote
- Tie::IxHash
- Time::HiRes
- Type::Library
- Type::Utils
- Types::Standard
- UUID::URandom
- boolean
- bytes
- constant
- if
- namespace::clean
- overload
- re
- strict
- version
- warnings
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
MongoDB::DeleteResult - MongoDB deletion result object
VERSION
version v2.2.2
SYNOPSIS
my $result = $coll->delete_one( { _id => $oid } ); if ( $result->acknowledged ) { ... }
DESCRIPTION
This class encapsulates the results from a deletion operation.
ATTRIBUTES
deleted_count
The number of documents that matched the filter.
METHODS
acknowledged
Indicates whether this write result was acknowledged. Always true for this class.
assert
Throws an error if write errors or write concern errors occurred. Otherwise, returns the invocant.
assert_no_write_error
Throws a MongoDB::WriteError if write errors occurred. Otherwise, returns the invocant.
assert_no_write_concern_error
Throws a MongoDB::WriteConcernError if write concern errors occurred. Otherwise, returns the invocant.
AUTHORS
David Golden <david@mongodb.com>
Rassi <rassi@mongodb.com>
Mike Friedman <friedo@friedo.com>
Kristina Chodorow <k.chodorow@gmail.com>
Florian Ragwitz <rafl@debian.org>
COPYRIGHT AND LICENSE
This software is Copyright (c) 2020 by MongoDB, Inc.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
Module Install Instructions
To install MongoDB, copy and paste the appropriate command in to your terminal.
cpanm MongoDB
perl -MCPAN -e shell install MongoDB
For more information on module installation, please visit the detailed CPAN module installation guide.