Skip to content
This repository was archived by the owner on Nov 14, 2018. It is now read-only.

Commit 9289e61

Browse files
authored
Merge branch 'master' into add-adapterview-listeners
2 parents 122f76c + cfa0162 commit 9289e61

3 files changed

Lines changed: 85 additions & 0 deletions

File tree

api/current.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
311321
package androidx.core.net {
312322

313323
public final class UriKt {
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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

0 commit comments

Comments
 (0)