aleksZubakov/ground-truth-builder 0
Репозиторий для студенческого проекта
eaniconer/compile-time-bignum 0
Compile-time arbitrary precision arithmetic library
MapKit iOS demo
Academic pet project to implement git-like distributed version-control system using .net core.
pull request commentboostorg/pfr
Something must be done with the default constructor
template<typename T> struct declval_helper { static T value; };But it not for clang and msvc https://godbolt.org/z/nYz6M61YT- What if we pass a NULL reference into boost::pfr::get? This is works good, but i cant anticipate the consequences
comment created time in a day
issue commentboostorg/pfr
Feature request: for_each_field multiple visitation
pfr::structure_tie will cause an "internal compiler error" in the current latest MSVC, for those who are having this problem or don't want to use hana, the following workaround also works:
template <size_t index = 0, class ...Args>
void ForEachMultipleField(const auto &callback, Args &&...args)
{
callback(pfr::get<index>(args)...);
constexpr size_t size = pfr::detail::fields_count<
std::decay_t<std::tuple_element_t<0, std::tuple<Args...>>>
>();
if constexpr (index + 1 != size) {
ForEachMultipleField<index + 1>(callback, std::forward<Args>(args)...);
}
}
comment created time in 4 days
push eventboostorg/pfr
commit sha 0436e48a7940b1de190b5065e0211f901a5b60de
Restore inspect tool runs
push time in 6 days
issue closedyandex/mapkit-android-demo
Возможна ли вставка собственных панорам как в веб версии ?
closed time in 7 days
CloseFileissue closedyandex/mapkit-android-demo
Здраствуйте. есть BottomSheetDialog, в нем NestedScrollView, при прокрутки вниз карта уходит за пределы BottomSheetDialog, все View пропадают, кроме MapView

closed time in 8 days
brlz0rissue openedyandex/mapkit-ios-demo
Локализация карты на русском языке
Здравствуйте
Возможно ли отвязать отображение адреса на языке, установленном на девайсе, и указать явно, чтобы адрес возвращался на русском языке ?
Например, на телефоне установлен системный язык английский, и адрес возвращается в таком виде - ulitsa Lenina. Необходимо получать адрес всегда на русском.
created time in 8 days
issue closedyandex/mapkit-android-demo
Локализация адреса на русском языке
Возможно ли отвязать отображение адреса на языке, установленном на девайсе, и указать явно, чтобы адрес возвращался на русском языке ?
Например, на телефоне установлен системный язык английский, и адрес возвращается в таком виде - ulitsa Lenina. Необходимо получать адрес всегда на русском.
closed time in 8 days
golovkinVissue openedyandex/mapkit-android-demo
Локализация адреса на русском языке
Возможно ли отвязать отображение адреса на языке, установленном на девайсе, и указать явно, чтобы адрес возвращался на русском языке ?
Например, на телефоне установлен системный язык английский, и адрес возвращается в таком виде - ulitsa Lenina. Необходимо получать адрес всегда на русском.
created time in 8 days
push eventboostorg/pfr
commit sha 4d9294cb1fd72eb995e69708f22346f73b905a38
final polishings for of boost-free version
push time in 8 days
push eventboostorg/pfr
commit sha e75c066ddc447b5f41ca049a2921a0d0dfb0b13e
freestanding docs anc CI fixes
push time in 8 days
push eventboostorg/pfr
commit sha e51a594dbb1e3820aa1ef3bb96504b0589c739b9
fix strip_boost_namespace.sh work if target pathh is missing
push time in 9 days
push eventboostorg/pfr
commit sha 12f2b3a365398d56140cd8fb40187f1e141e5261
CI fixes
push time in 9 days
push eventboostorg/pfr
commit sha 2a1b2062444299f664bd3bdb9866db66c67a4f12
temporary disable inspect tool, as it is broken in develop
push time in 9 days
push eventboostorg/pfr
commit sha da12b52759ea52c3e2341690f208fea898643bbb
Add CMakeLists.txt
push time in 9 days
issue commentboostorg/pfr
How to compare each member of two identical structure values?
Oh, I found an existing issue #69, sorry to open this new one.
comment created time in 9 days
issue closedboostorg/pfr
How to compare each member of two identical structure values?
I'm writing a Settings feature for my program. After the members are modified at runtime and committed, I need to compare them and call the member handler for each modified member.
A simplified short example: https://godbolt.org/z/Y7PKbrqe5
pfr::get only accepts an index as a non-type template parameter, so I obviously can't enumerate at runtime with fields_count.
I didn't find a solution from the docs, am I missing something?
Any help would be appreciated.
closed time in 9 days
SpriteOvOissue openedboostorg/pfr
How do I compare each member of two identical structure values?
I'm writing a Settings feature for my program. After the members are modified at runtime and committed, I need to compare them and call the member handler for each modified member.
A simplified short example: https://godbolt.org/z/Y7PKbrqe5
pfr::get only accepts an index as a non-type template parameter, so I obviously can't enumerate at runtime with fields_count.
I didn't find a solution from the docs, am I missing something?
Any help would be appreciated.
created time in 9 days
push eventboostorg/pfr
commit sha 444094f20d0a38bf44eafdd578cc0160224f5553
add helper script to remove boost namespace from the library and smoke-test the result
commit sha b4bee46c542b25aa8418ec34c78def7e146e9ac4
Merge github.com:boostorg/pfr into develop
push time in 9 days
issue closedyandex/mapkit-android-demo
Добрый день!
Не работает ImageProvider.fromResource с векторными рисунками. С PNG все работает нормально. Есть ли какой нибудь ещё способ вывести векторный рисунок, взятый из ресурсов?
closed time in 10 days
anton165issue commentyandex/mapkit-android-demo
Добрый день ImageProvider не поддерживает векторные ресурсы, единственное, что можно сделать это сконвертировать векторную картинку в Bitmap средствами android sdk и позвать ImageProvider.fromBitmap(), либо можно выставить любую android view в качестве содержимого PlacemarkMapObject с помощью PlacemarkMapObject.setView(), вот пример.
comment created time in 10 days
issue commentyandex/mapkit-android-demo
Здравствуйте, Попробуйте пожалуйста выставить yandex:movable="true" для MapView.
comment created time in 11 days
issue openedyandex/mapkit-android-demo
Здраствуйте. есть BottomSheetDialog, в нем NestedScrollView, при прокрутки вниз карта уходит за пределы BottomSheetDialog, все View пропадают, кроме MapView

created time in 11 days
issue openedyandex/mapkit-android-demo
Добрый день!
Не работает ImageProvider.fromResource с векторными рисунками. С PNG все работает нормально. Есть ли какой нибудь ещё способ вывести векторный рисунок, взятый из ресурсов?
created time in 12 days
issue commentyandex/mapkit-ios-demo
Добавление всплывающего окна с информацией об объекте
да, не совсем туда вопрос задал, просто подумал, что здесь шанс найти ответ больше если кто-то ищет ответ на подобный вопрос, то мне помог этот пример: https://github.com/martinnormark/HalfModalPresentationController
comment created time in 12 days
issue commentyandex/mapkit-ios-demo
Построение пешеходного маршрута
Автомобильные маршруты также строятся без проблем, ошибка появляется именно на пешеходном
comment created time in 12 days
issue commentyandex/mapkit-ios-demo
Построение пешеходного маршрута
- пустой массив принимался на симуляторе, на реальном устройстве просто выдает "Remote server error"
comment created time in 12 days
issue openedyandex/mapkit-ios-demo
Построение пешеходного маршрута
При построении пешеходного маршрута на длинные дистанции (между разными городами) маршрут не строится В пределах одного города - все ок
То есть метод
func onRoutesForPedestrianReceived(_ routes: [YMKMasstransitRoute])
принимает пустой массив routes
С чем это может быть связано? На карте яндекс.карт маршруты спокойно строятся
created time in 12 days
issue commentyandex/mapkit-android-demo
RuntimeException: Duplicate class после подключения firebase crashlytics
I have the same conflicts in my code.
comment created time in 19 days
issue closedboostorg/pfr
At the moment this library does not support clients using CMake. Is there a plan to change that?
The documentation's You can just copy the content of the "include" folder suggestion is not acceptable.
Since this is a header-only library with no dependency on other Boost libraries, the lists file to provide support would look trivial.
I could make a PR adding a lists file if desired.
closed time in 19 days
friendlyanon