line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
71
|
|
|
71
|
|
24821
|
use 5.010001; |
|
71
|
|
|
|
|
231
|
|
2
|
71
|
|
|
71
|
|
358
|
use strict; |
|
71
|
|
|
|
|
131
|
|
|
71
|
|
|
|
|
1329
|
|
3
|
71
|
|
|
71
|
|
324
|
use warnings; |
|
71
|
|
|
|
|
148
|
|
|
71
|
|
|
|
|
3868
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package BSON::Symbol; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
# ABSTRACT: BSON type wrapper for symbol data (DEPRECATED) |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = 'v1.12.0'; |
10
|
|
|
|
|
|
|
|
11
|
71
|
|
|
71
|
|
420
|
use Moo 2.002004; |
|
71
|
|
|
|
|
1177
|
|
|
71
|
|
|
|
|
501
|
|
12
|
71
|
|
|
71
|
|
20871
|
use namespace::clean -except => 'meta'; |
|
71
|
|
|
|
|
150
|
|
|
71
|
|
|
|
|
398
|
|
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
extends 'BSON::String'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
1; |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=pod |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=encoding UTF-8 |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 NAME |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
BSON::Symbol - BSON type wrapper for symbol data (DEPRECATED) |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 VERSION |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
version v1.12.0 |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This module wraps the deprecated BSON "symbol" type. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
You are strongly encouraged to use ordinary string data instead. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 AUTHORS |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=over 4 |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=item * |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
David Golden |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=item * |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
Stefan G. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=back |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
This software is Copyright (c) 2019 by Stefan G. and MongoDB, Inc. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
This is free software, licensed under: |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
The Apache License, Version 2.0, January 2004 |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
__END__ |