This repository was archived by the owner on Nov 14, 2018. It is now read-only.
File tree Expand file tree Collapse file tree
androidTest/java/androidx/core/location
main/java/androidx/core/location Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -308,6 +308,16 @@ package androidx.core.graphics.drawable {
308308
309309}
310310
311+ package androidx.core.location {
312+
313+ public final class LocationKt {
314+ ctor public LocationKt();
315+ method public static operator double component1(android.location.Location);
316+ method public static operator double component2(android.location.Location);
317+ }
318+
319+ }
320+
311321package androidx.core.net {
312322
313323 public final class UriKt {
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (C) 2018 The Android Open Source Project
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ package androidx.core.location
18+
19+ import android.location.Location
20+ import org.junit.Assert.assertEquals
21+ import org.junit.Test
22+
23+ class LocationTest {
24+ @Test fun destructuring () {
25+ val (lat, lon) = Location (" " ).apply {
26+ latitude = 1.0
27+ longitude = 2.0
28+ }
29+ assertEquals(lat, 1.0 , 0.0 )
30+ assertEquals(lon, 2.0 , 0.0 )
31+ }
32+ }
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (C) 2018 The Android Open Source Project
3+ *
4+ * Licensed under the Apache License, Version 2.0 (the "License");
5+ * you may not use this file except in compliance with the License.
6+ * You may obtain a copy of the License at
7+ *
8+ * http://www.apache.org/licenses/LICENSE-2.0
9+ *
10+ * Unless required by applicable law or agreed to in writing, software
11+ * distributed under the License is distributed on an "AS IS" BASIS,
12+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+ * See the License for the specific language governing permissions and
14+ * limitations under the License.
15+ */
16+
17+ @file:Suppress(" NOTHING_TO_INLINE" )
18+
19+ package androidx.core.location
20+
21+ import android.location.Location
22+
23+ /* *
24+ * Returns the latitude of this [Location].
25+ *
26+ * This method allows to use destructuring declarations when working with [Location],
27+ * for example:
28+ * ```
29+ * val (lat, lon) = myLocation
30+ * ```
31+ */
32+ inline operator fun Location.component1 () = this .latitude
33+
34+ /* *
35+ * Returns the longitude of this [Location].
36+ *
37+ * This method allows to use destructuring declarations when working with [Location],
38+ * for example:
39+ * ```
40+ * val (lat, lon) = myLocation
41+ * ```
42+ */
43+ inline operator fun Location.component2 () = this .longitude
You can’t perform that action at this time.
0 commit comments